@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

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

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

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

.light-background {
  --background-color: #f2f8f9;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message,
.php-email-form .error-message {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.php-email-form .visible {
  opacity: 1;
}

.php-email-form .fade-out {
  opacity: 0;
}


.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

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

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

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

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

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

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

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

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

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

.navmenu ul {
  display: none;
  list-style: none;
  position: absolute;
  top: 75px;       
  left: 20px;      
  right: 20px;     
  padding: 10px 0;
  margin: 0;
  border-radius: 10px;
  background-color: var(--nav-mobile-background-color);
  overflow: visible; 
  transition: 0.3s;
  z-index: 99999;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  height: auto;     
}

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

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
    position: absolute;
    font-size: 30px;
    top: 27px;
    right: 25px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 0px;
  display: inline-flex;    
  width: fit-content;      
}

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

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

.footer .footer-about p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  max-width: 475px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 17px;
  color: var(--accent-color);
  font-weight: 800;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  text-decoration: none;
  transition: 0.3s;
}

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

.footer .footer-contact p a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-about .logo {
    display: flex;
    justify-content: center;
    width: 100%;       
    margin-left: auto;  
    margin-right: auto; 
    margin-bottom: 0px;
}
  
  .footer .footer-about .logo:hover img {
    transform: none; 
  }

  .footer .social-links {
    justify-content: center;
    margin-right: 0;
    margin-bottom: 40px;
  }

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

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px !important;
  }
}

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

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

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

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

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

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

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

.scroll-top i {
  font-size: 27px;
  color: var(--surface-color); 
  line-height: 0;
  z-index: 2;
}

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

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

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

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



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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-title2 {
  text-align: center;
  padding: 60px 0 30px;
  position: relative;
}

.section-title2 h2 {
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  color: #000000;
}

.section-title2 span {
  position: absolute;
  top: 10px;
  color: color-mix(in srgb, #bd1a2d, transparent 85%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
}

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

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

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

@media (max-width: 576px) {
  .section-title2 p {
    padding: 0 15px;  /* adaugă spațiu lateral */
    text-align: center; /* opțional, dacă vrei pe mijloc */
  }
}
}

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

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

/*--------------------------------------------------------------
# Hero Section - ACASĂ
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 0px;
  overflow: hidden;
}

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

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

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

  z-index: 1;
}

.brand-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.hero-company-name {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0px;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--contrast-color);
}

.hero-services-line {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-left: 0.6em; 
}

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

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

  .hero-title {
    font-size: 1.75rem;
    margin-top: 60px;
  }

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

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

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

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

.about .content .section-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.about .content h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 35px;
  line-height: 1.2;
  color: #000000;
  margin-top: 0;
}

.about .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about .content .lang-ro p,
.about .content .lang-en p {
  margin-bottom: 2rem;
}

.about .content .lang-ro p:last-of-type,
.about .content .lang-en p:last-of-type {
  margin-bottom: 0;
}

.about .image-section {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 15px;
  height: 100%;
  align-items: stretch;
}

.about .image-section .main-image {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.075);
}

.about .image-section .main-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.about .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 15px;
  height: 100%;
}

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

.about .image-section .image-grid .grid-item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

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

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

  .about .content h2 {
    font-size: 1.75rem;
    text-align: center;
  }

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

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

.home-about .row.align-items-stretch {
  display: flex;
}

.home-about .about-image {
  height: 100%;           
  position: relative;     
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.075);
  display: flex;   
}

.home-about .about-image img {
  width: 100%;
  height: 100%;           
  object-fit: cover;      
  display: block;
  border-radius: 15px;
}

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

.home-about .about-image .experience-badge .bi-award {
  font-size: 30px;
  color: var(--accent-color);
  line-height: 1;
  filter: drop-shadow(0 0 5px var(--accent-color));
}

.home-about .about-image .experience-badge .years {
  font-size: 25px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0px;
}

.home-about .about-image .experience-badge .text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 140, 173, 0.85);
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1;
}

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

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

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

.home-about .about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.home-about .about-content .section-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.home-about .about-content h2 {
  margin-bottom: 30px;
  font-weight: 800;
  font-size: 32px;
  color: #000000;
}

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

.home-about .feature-item {
  padding: 30px 5px; 
  border-radius: 15px; 
  margin-top: 20px;
  background-color: var(--surface-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: auto; 
  min-height: 200px;
  border: 1px solid rgba(0, 140, 173, 0.25);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.025);
  transition: all 0.3s ease;
}

.home-about .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.075);
  border-color: var(--accent-color);
}

.home-about .feature-item .icon {
  font-size: 35px;
  color: var(--accent-color);
  margin-bottom: 20px;
  line-height: 1;
}

.home-about .feature-item h4 {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 800; 
  color: #000000;
}

.home-about .feature-item p {
  font-size: 15px; 
  line-height: 1.6; 
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 0;
  max-width: 250px;
}

@media (max-width: 992px) {
  .home-about .about-image {
    height: 400px;
    margin-bottom: 0px;
  }
  
  .home-about .about-content {
    margin-top: 0px;
  }
}

@media (max-width: 576px) {
  .home-about {
    overflow-x: hidden;
    padding: 60px 0;
  }

  .home-about .about-image {
    height: 300px;
    position: relative; 
  }
  
  .home-about .about-image .experience-badge {
    position: absolute;
    bottom: 15px;          
    left: 50%;             
    transform: translateX(-50%); 
    padding: 10px 15px; 
  }

  .home-about .about-image .experience-badge .bi-award {
    font-size: 22px; 
  }

  .home-about .about-image .experience-badge .years {
    font-size: 20px; 
  }

  .home-about .about-image .experience-badge .text {
    font-size: 13px; 
  }

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

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

  .home-about .about-content h2 {
    text-align: center;
    font-size: 1.75rem;
  }

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

  .home-about .feature-item h4 {
    font-size: 1.25rem;
    text-align: center;
  }

  .home-about .feature-item p {
   font-size: 17px;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.testimonial-centered-modern {
    padding: 60px 0 0px;
    display: flex;
    justify-content: center;
}

.executive-card {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    max-width: 825px;
    padding: 70px 50px 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 140, 173, 0.25);
}

.minimal-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.modern-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 1;
}

.badge-text {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    text-transform: uppercase;
}

.balanced-quote {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin: 0 0 20px 0;
    font-style: italic;
}

.author-name-v7 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.15rem;
    color: var(--default-color);
    margin-top: 40px;
    margin-bottom: 8px;
    line-height: 1.1;
    display: block;
}

.author-name-v7::after {
    content: "";
    display: block;
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 15px auto;
    border-radius: 50px;
}

.author-role-v7 {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin: 0;
    display: inline-block;
    position: relative;
    padding: 8px 0;
}

.premium-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #002B7F 33.33%, #FCD116 33.33%, #FCD116 66.66%, #CE1126 66.66%);
}
@media (max-width: 768px) {
    .executive-card {
        padding: 50px 25px 40px;
        margin: 0 15px;
    }
    .balanced-quote {
        font-size: 1rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .transport .transport-truck .truck-info .description {
    font-size: 16px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {

  .image-side-full {
    height: 200px;
  }

  .content-side-compact {
    padding: 25px 20px;
    text-align: center;
  }

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

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

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

  .block-title {
    justify-content: center;
    font-size: 14px;
  }

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

@media (max-width: 991px) {

  .transport-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px;

    border-left: none;
    border-bottom: 5px solid var(--accent-color);
  }

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

}

/*--------------------------------------------------------------
# ITP Section
--------------------------------------------------------------*/
.itp {
  padding: 60px 0;
}

.itp .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px; 
  background: color-mix(in srgb, #28a745, transparent 90%);
  color: #1e7e34; 
  padding: 10px 22px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid color-mix(in srgb, #28a745, transparent 75%);
  position: relative;
  margin-bottom: 15px;
}

.dot-live {
  width: 10px;
  height: 10px;
  background-color: #28a745; 
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

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

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

.itp .intro-content .section-heading {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 0.15rem;
}

.itp .intro-content .section-heading2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 1.5rem;
}

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

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

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

.itp .intro-content .cta-button i {
  font-size: 20px;
}

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

.itp .intro-content .cta-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--default-color);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  transition: all 0.3s ease;
}

.itp .intro-content .cta-button-outline i {
  font-size: 20px;
  color: var(--accent-color);
}

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

.itp .intro-content .cta-button-outline:hover i {
  color: #ffffff; 
}

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

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

@media (max-width: 991px) {

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

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

  .itp .intro-content .section-heading {
    font-size: 2rem;
  }

  .itp .intro-content .section-heading2 {
    font-size: 1.5rem;
  }

  .itp .intro-content .section-description {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

}


/*--------------------------------------------------------------
# ITP2 Section
--------------------------------------------------------------*/
.itp2 {
  padding: 0;
}

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

.itp2 .featured-tours-slider .swiper-wrapper {
  height: auto !important;
}

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

.itp2 .featured-tours-slider .swiper-pagination-bullets {
  margin-bottom: 0;
}

.itp2 .featured-tours-slider .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.itp2 .featured-tours-slider .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.itp2 .featured-tour-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.itp2 .featured-tour-card .tour-image {
  position: relative;
  overflow: hidden;
  cursor: grab;
}

.itp2 .featured-tour-card .tour-image:active {
  cursor: grabbing;
}

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

.itp2 .featured-tour-card .tour-image:hover img {
  transform: scale(1.1);
}

.itp2 .featured-tour-card:hover .category-label {
  color: #000;
}

.itp2 .tour-content-button {
  background-color: var(--surface-color);
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.itp2 .station-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-transform: uppercase;
  letter-spacing: 1.75px;
  font-weight: 600;
  margin: 0;
}

.itp2 .category-label {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
}

.itp-cards {
  padding: 60px 0;
}

.itp-cards .itp-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch; 
}

.itp-cards .featured-tour-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  border-radius: 25px;
  max-width: 550px; 
  min-width: 320px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.085);
}

.itp-cards .featured-tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.itp-cards .tour-content-button {
  padding: 45px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.itp-cards .content-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.itp-cards .icon-wrapper {
  font-size: 45px;
  margin-bottom: 20px;
  color: #ffffff;
}

.itp-cards .station-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.itp-cards .category-label {
  font-size: 25px;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.itp-cards .card-body-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 30px;
  max-width: 90%;
}

.itp-cards .cta-button,
.itp-cards .static-footer-badge {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  white-space: nowrap;
}

.itp-cards .cta-button {
  background: #ffffff;
  color: var(--accent-color) !important;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  gap: 10px;
  padding: 0 20px;
}

.itp-cards .cta-button i {
  font-size: 20px;
}

.itp-cards .cta-button:hover {
  background: var(--default-color);
  color: #ffffff !important;
}

.itp-cards .static-footer-badge {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--surface-color);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.itp-cards .static-footer-badge i {
  font-size: 25px; 
}

.itp-cards .itp-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 768px) {
  .itp-cards .itp-card-buttons {
    flex-direction: row;
  }
}

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

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

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

.main-title2 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--surface-color);
    letter-spacing: 10px;
    line-height: 1.1;
    margin-top: 5px; 
    display: block;
    margin-bottom: 25px;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .modern-image-composition {
        flex-direction: column; /* stivuire imagini */
        align-items: center;
        gap: 20px; /* distanța între carduri */
    }

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

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

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

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


/*--------------------------------------------------------------
# Why Section - DE CE SORI-NIS
--------------------------------------------------------------*/
.bento-section {
  padding: 60px 0;
}

.bento-section .bento-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1320px;
  box-sizing: border-box;
}

.bento-section .header-content {
  text-align: center;
  margin-bottom: 40px;
}

.bento-section .bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

.bento-section .bento-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.card-wrapper {
  height: 100%;
  display: flex;
}

.card-wrapper .bento-card {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-wrapper:hover .bento-card {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bento-section .grid-col-6 { grid-column: span 6; }
.bento-section .grid-col-3 { grid-column: span 3; }
.bento-section .grid-col-4 { grid-column: span 4; }
.bento-section .grid-row-2 { grid-row: span 2; }

.bento-section .card-big {
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  padding: 40px;
}

.bento-section .card-content-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.bento-section .card-dark {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.bento-section .card-img-overlay {
  background-size: cover;
  background-position: center;
  color: #000000;
  background-image: url('../img/why/sori-nis-why-01.webp');
}


.bento-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: linear-gradient(to top, #000 15%, rgba(0,0,0,0.25) 50%, transparent 100%);

  z-index: 1;
}

.bento-section .card-content {
  position: relative;
  z-index: 2;
}

.bento-section .card-big {
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  padding: 40px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.bento-section .card-big h3 {
  font-size: 1.95rem; 
  font-weight: 800;
  color: var(--accent-color);
  margin: 0 0 15px 0;
}

.bento-section .card-big p {
  font-size: 1.075rem; 
  color: var(--surface-color);   
  line-height: 1.5;
  margin: 0;
}

.bento-section .bento-card .card-content-center i {
    font-size: 40px; 
    color: var(--default-color); 
    margin-bottom: 12px;
}

.bento-section .bento-card .card-content-center h4,
.bento-section .bento-card .card-content-center h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--surface-color);
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

.bento-section .bento-card .card-content-center p {
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
  .bento-section .bento-container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .bento-section .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .card-wrapper {
    width: 100%;
  }

  .card-wrapper .card-big {
    height: 325px; 
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    text-align: center;
    padding: 20px;
  }

  .bento-section .card-big h3 {
    font-size: 1.5rem; 
    margin-bottom: 15px;
  }

  .bento-section .card-big p {
    font-size: 0.95rem; 
    line-height: 1.5;
    margin: 0;
  }

  .card-wrapper .grid-col-3,
  .card-wrapper .grid-col-6:not(.card-big),
  .card-wrapper .grid-col-4 {
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }

  .bento-section .card-content-center {
    padding: 15px;
  }

  .bento-section .bento-card .card-content-center h3,
  .bento-section .bento-card .card-content-center h4 {
    font-size: 1.25rem;
  }

  .bento-section .bento-card .card-content-center p {
    font-size: 0.9rem;
    margin: 0;
  }
}

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

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

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

.pulse-dot {
    width: 15px;
    height: 15px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
}

.pulse-dot::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse-animation 3s infinite;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.75);
}

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

.online-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(40, 167, 69, 0.05);
  color: #28a745;
  padding: 10px 35px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid rgba(40, 167, 69, 0.2);
  margin-bottom: 25px;
}

h2.cta-title {
  color: #fff;
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0px;
}

h3.cta-title {
  color: #fff;
  font-size: 2.85rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--accent-color);
}

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

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

.btn-custom {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Tranziție mai fluidă */
  border: 1px solid rgba(0, 140, 173, 0.2);
  background: rgba(0, 140, 173, 0.2);
  position: relative;
  top: 0;
}

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

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

.btn-label {
  color: var(--surface-color);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {

  h2.cta-title {
    font-size: 1.25rem;   
    line-height: 1.3;
  }

  h3.cta-title {
    font-size: 1.5rem;   /    line-height: 1.3;
  }

  .cta-subtitle {
    font-size: 1.05rem;  
    line-height: 1.5;
    padding: 0 15px;
  }

}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.075);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact-wrapper {
  height: 100%;
}

.contact-wrapper .contact-card {
  height: 100%;
}

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

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
}


/* 1. CARD TRANSPORT */
.transport-card {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transport-card .icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(0, 140, 173, 0.25);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 20px;
}

.transport-card .card-title {
  font-size: 25px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.transport-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}

.transport-card .info-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.transport-card .info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.transport-card .phone-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.transport-card .email-badge {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.transport-card .info-badge i {
  font-size: 17px;   
  width: 24px;       
  height: 24px;     
  display: flex;
  align-items: center;
  justify-content: center;
}

.transport-card .info-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transport-card .info-content > *:last-child {
  margin: 0;
  padding: 0;
}

.transport-card .info-content a {
  text-decoration: none;
  color: var(--default-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

/* 2. CARD ITP */
.itp-card {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.itp-card .icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(0, 140, 173, 0.25);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 20px;
}

.itp-card .card-title {
  font-size: 25px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.itp-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.itp-card .info-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.itp-card .info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.itp-card .program-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.itp-card .info-badge i {
  font-size: 17px;   
  width: 24px;       
  height: 24px;     
  display: flex;
  align-items: center;
  justify-content: center;
}

.itp-card .highlight-phone {
    font-size: 25px;
    font-weight: 800;
    color: var(--default-color);
}

.itp-card .highlight-phone:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.itp-card .program-label {
  font-size: 14px;
  font-weight: 600;
}

.itp-card p {
  margin: 4px 0;
  font-size: 16px;
  color: var(--default-color);
  font-weight: 700;
}

.status-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--default-color);
    padding: 8px 15px;
    border-radius: 12px;
    margin-top: 0px;
    font-size: 13px;
    font-weight: 600;
}

/* 3. CARD ADRESĂ */
.address-card {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.address-card .icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(0, 140, 173, 0.25);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 20px;
}

.address-card .card-title {
  font-size: 25px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.address-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  width: 100%;
}

.address-card .info-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.address-card .info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.address-card .program-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.address-card .info-badge i {
  font-size: 17px;   
  width: 24px;       
  height: 24px;     
  display: flex;
  align-items: center;
  justify-content: center;
}

.address-card .highlight-address {
    font-size: 17px;
    font-weight: 700;
    color: var(--default-color);
}

.address-card .highlight-address:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.address-card .program-label {
  font-size: 14px;
  font-weight: 600;
}

.address-card p {
  margin: 4px 0;
  font-size: 16px;
  color: var(--default-color);
  font-weight: 700;
}

.address-card .program-item {
  margin-bottom: 0;
}

.contact {
  padding: 30px 0 60px;
}

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

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

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

.contact .map-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact .map-wrapper {
  height: 350px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  flex-grow: 1;
}

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

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

.btn-google-maps i {
  font-size: 16px;
  line-height: 1;
}

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

.contact .contact-form-container h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--default2-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--default-color);
  border-radius: 2px;
}

.contact .contact-form-container > p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 95%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, #000000, transparent 5%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--surface-color);
  border: none;
  width: auto;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;

  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact .contact-form-container .php-email-form button i {
  font-size: 16px;
  line-height: 1;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: var(--default-color);
  color: var(--accent-color);
}

.form-check {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.form-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  cursor: pointer;
}

.form-check-label {
  margin-left: 8px;
  line-height: 1;
  font-style: normal;
}

.form-check-label a {
  color: var(--accent-color);
}

.form-check-label a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.form-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  cursor: pointer;
}


.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 1px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default2-color), transparent 80%);
  color: #000000;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contact .contact-form-container .php-email-form .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .contact .contact-form-container .php-email-form button {
    justify-content: center;
  }

}

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

.floating_btn {
  position: fixed;
  bottom: 70px;   /* WhatsApp jos */
  right: 15px;    /* Aliniere la dreapta */
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

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

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

/*--------------------------------------------------------------
# Privacy Section - POLITICA CONFIDENȚIALITATE
--------------------------------------------------------------*/
.privacy {
  padding: 30px 0
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 0px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  font-weight: 800;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

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

.privacy .privacy-content .content-section p a:hover {
  text-decoration: underline;
  color: var(--default2-color);
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "\f26b";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--accent-color);
}


.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 0px;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  font-weight: 800;
}

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

.privacy .privacy-contact .contact-details {
  background-color: rgba(0, 20, 137, 0.1);
  padding: 25px;
  border-radius: 10px;
}

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

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: #000000;
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

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

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

/* Butonul principal */
.lang-widget .current-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  background: #ffffff;
  border: 1px solid var(--accent-color); 
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* SĂGEATA - Doar pentru Desktop */
@media (min-width: 992px) {
  .lang-widget .current-lang::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%; 
    width: 12px;
    height: 12px;
    border-left: 2.5px solid var(--accent-color);
    border-top: 2.5px solid var(--accent-color);
    transform: translateX(-50%) rotate(45deg); 
    pointer-events: none;
    margin-bottom: 8px;
    opacity: 0.3; 
    transition: opacity 0.3s ease, margin-bottom 0.3s ease;
  }

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

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

/* MOBIL - Sincronizare Puls cu WhatsApp */
@media (max-width: 991px) {
  .lang-widget .current-lang::after {
    display: none; 
  }

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

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

/* ANIMAȚIE SĂGEATĂ (Desktop) */
@keyframes arrowFlyStrictlyUp {
  0% { margin-bottom: 2px; opacity: 0; }
  30% { opacity: 1; }
  100% { margin-bottom: 28px; opacity: 0; }
}

/* NOUA ANIMAȚIE PULS LIMBA (Sincronizată) */
@keyframes buttonPulseLanguage {
  to {
    /* Unda se extinde la 10px, la fel ca la WhatsApp */
    box-shadow: 0 0 0 10px rgba(211, 152, 58, 0);
  }
}

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

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

.lang-widget .lang-options li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  background: #ffffff;
  border: 1px solid rgba(0, 140, 173, 0.5); 
  border-radius: 10px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.9); 
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease;
}

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

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

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

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

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


