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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0092ff; /* 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);  /* 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: #40524d; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2f5d50; /* 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: #f1f6f5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2f5d50;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2e2b28;
  --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: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: #000000;
  height: 40px;
  padding: 0;
  font-size: 15px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: #ffffff;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: #ffffff;
}

@media (max-width: 575px) {

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

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

.header .topbar .contact-info i a:hover {
  color: #ee2c30;
  text-decoration: underline;
}

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

.header .topbar .social-links a:hover {
  color: #ee2c30;
}

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

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

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

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

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

  .navmenu svg {
    height: 16px;
    padding-right: 10px;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    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.25s;
  }

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #0092ff;
  }
}

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

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

  .navmenu svg {
    height: 16px;
    padding-right: 10px;
  }

.navmenu ul {
  display: none;
  list-style: none;
  position: absolute;
  top: 60px;       /* poziționare verticală față de toggle */
  left: 20px;      /* poziționare stânga */
  right: 20px;     /* păstrează lățimea ca înainte */
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  background-color: var(--nav-mobile-background-color);
  overflow: visible; /* să crească doar cât e textul */
  transition: 0.3s;
  z-index: 99999;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  height: auto;     /* înălțimea se adaptează la conținut */
}

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    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(--accent-color);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #ee2c30;
    color: #ee2c30;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
    position: absolute;
    font-size: 35px;
    top: 15px;
    right: 15px;
    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: var(--background-color);
  font-size: 14px;
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.footer .footer-content .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-content .logo img {
  max-height: 65px;
  margin-right: 6px;
}

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

  .footer .footer-content .logo img {
    margin-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

.footer .footer-content p {
  font-size: 16px;
  line-height: 2;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer h4 {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #000000;
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: #000000;
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .footer-contact .contact-item .contact-info a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

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


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

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 45px;
  height: 45px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex; /* pentru a centra iconița */
  justify-content: center;
  align-items: center;
}

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

.scroll-top i {
  font-size: 20px;
  color: #ffffff;
  line-height: 0;
  transition: color 0.3s; /* pentru o animație lină */
}

.scroll-top:hover i {
  color: #ffffff; /* doar iconița își schimbă culoarea */
}

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

/*--------------------------------------------------------------
# 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);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  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 70%);
}

/*--------------------------------------------------------------
# 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: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 800;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1;
}

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

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

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

  .section-title span {
    font-size: 38px;
  }
}

.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;
  padding: 60px 0;
  overflow: hidden;
}

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

.hero .hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

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

.hero .hero-content {
  margin-bottom: 4rem;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.hero .hero-content h2 {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.6;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 1rem;
  }
}

.hero .hero-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-btns .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }
}

.hero .hero-content .hero-btns .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.hero .hero-content .hero-btns .btn-primary:hover {
  background-color: var(--default-color);
  border-color: var(--default-color);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 75%);
  color: #ffffff;
}

.hero .hero-content .hero-btns .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero .hero-content .hero-btns .btn-outline i {
  font-size: 1.2rem;
}

.hero .hero-content .hero-btns .btn-outline:hover {
  transform: translateY(-5px);
  background-color: var(--default-color);
  border-color: var(--default-color);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 75%);
  color: #ffffff;
}

.hero .hero-image-container {
  margin-bottom: 4rem;
  position: relative;
}

.hero .hero-image-container .hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-image-container .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.hero .hero-image-container .hero-image img:hover {
  transform: scale(1.05);
}

.hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero .hero-stats .stat-item {
  padding: 2rem 1rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.hero .hero-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 10%);
}

.hero .hero-stats .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #fff 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.hero .hero-stats .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.hero .hero-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero .hero-stats .stat-item h3 {
    font-size: 2rem;
  }
}

.hero .hero-stats .stat-item p {
  font-size: 1rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero {
    padding: 45px 0 60px;
    min-height: auto;
  }

  .hero .hero-content {
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    margin-bottom: 0rem;
  }

  .hero .hero-content p {
    margin-bottom: 2rem;
  }

  .hero .hero-image-container {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# About Home Section - DESPRE NOI
--------------------------------------------------------------*/
.about-home {
  position: relative;
  padding: 60px 0 60px 0; /* eliminăm padding-bottom ca secundara să fie pe jos */
}

.about-home .about-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0rem;
  font-weight: 800;
}

.about-home .about-content .lead {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

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

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

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

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

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

.about-home .about-images {
  position: relative;
  width: 100%;
  height: 100%; /* ia întreaga înălțime a secțiunii */
  min-height: 500px;
}

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

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

.about-home .about-images .secondary-image {
  position: absolute;
  bottom: 0; /* fix pe marginea de jos a secțiunii */
  left: 0;
  width: 60%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

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

.about-home .about-images .experience-badge {
  position: absolute;
  top: 58%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 3;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.services .services-container {
  margin-bottom: 60px;
}

.services .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
}

.services .services-container .service-item:hover {
  transform: translateY(-5px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .services-container .service-item:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .services-container .service-item:hover .service-link i {
  transform: translateX(0px);
}

.services .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.services .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services .services-container .service-item .service-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link:hover {
  color: #000000;
}

.services .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services .cta-wrapper {
  padding: 0px 0 0px;
}

.services .cta-wrapper .cta-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-image img {
  width: 175px;
  height: 175px;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--default-color);
}

.services .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--default-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

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

  .services .services-container .service-item {
    flex-direction: column;
  }

  .services .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Services Section - SERVICII 2
--------------------------------------------------------------*/
.services2 {
  padding-top: 0px;
  padding-bottom: 60px;
}

.services2 .service-block2 {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services2 .service-block2:hover {
  transform: translateY(-5px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services2 .service-block2 .service-content {
  padding: 40px 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services2 .service-block2 .service-content .icon {
  width: 70px;
  height: 70px;
  background: none;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.services2 .service-block2 .service-content .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services2 .service-block2 .service-content h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.services2 .service-block2 .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

.services2 .service-block2 .service-image {
  height: 250px;
  overflow: hidden;
}

.services2 .service-block2 .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.services2 .service-card2 {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.services2 .service-card2:hover {
  transform: translateY(-5px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services2 .service-card2 .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services2 .service-card2 .card-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services2 .service-card2:hover .card-icon {
  background: var(--accent-color);
}

.services2 .service-card2:hover .card-icon i {
  color: var(--contrast-color);
}

.services2 .service-card2 h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--default-color);
}

.services2 .service-card2 p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services2 .service-block2 .service-content {
    padding: 30px 20px 20px;
  }

  .services2 .service-block2 .service-content .stats {
    gap: 20px;
  }

  .services2 .service-block2 .service-image {
    height: 200px;
  }

  .services2 .service-card2 {
    padding: 25px 20px;
  }
}

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

.why .row {
  align-items: stretch;
}

.why .col-lg-5,
.why .col-lg-7 {
  display: flex;
  flex-direction: column;
}

.why .content-wrapper {
  height: auto;
}

.why .hero-image-wrapper {
  flex: 1;
  display: flex;
}

.why .hero-image-wrapper .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.why .content-wrapper h2 {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

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

.why .content-wrapper .lead-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.why .info-grid {
  margin-bottom: 0rem;
}

.why .info-grid .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why .info-grid .info-item:last-child {
  margin-bottom: 0;
}

.why .info-grid .info-item .info-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why .info-grid .info-item .info-icon i {
  font-size: 1.75rem;
  color: var(--default-color);
}

.why .info-grid .info-item .info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why .info-grid .info-item .info-text strong {
  font-weight: 800;
  color: var(--accent-color);
}

.why .info-grid .info-item .info-text span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.why .core-values {
  padding-top: 0px;
}

.why .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
}

.why .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  margin-bottom: 20px;
}

.why .core-values .value-card .value-icon i {
  font-size: 25px;
  color: #000000;
}

.why .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--default-color);
}

.why .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 991.98px) {
  .why .content-wrapper {
    margin-top: 0rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 146, 255, 0.15);
}

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

.call-to-action .content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

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

.call-to-action .content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.call-to-action .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.call-to-action .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
}

.call-to-action .features-list li i {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.call-to-action .cta-buttons i {
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
  }
}

.call-to-action .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action .btn-primary:hover {
  background: var(--default-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.call-to-action .btn-secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.call-to-action .btn-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 50%);
}

.call-to-action .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 75%);
}

.call-to-action .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .call-to-action .image-wrapper img {
    height: 250px;
  }
}

.call-to-action .image-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .call-to-action .image-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 992px) {
  .call-to-action .content {
    margin-bottom: 2rem;
  }
}

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

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

.gallery .row:last-of-type .gallery-item {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .gallery .row {
    --bs-gutter-y: 0;
  }

  .gallery .row:last-of-type .gallery-item {
    margin-bottom: 30px;
  }

  .gallery .isotope-container:last-of-type .gallery-item:last-child {
    margin-bottom: 0;
  }
}

.gallery .gallery-item .gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery .gallery-item .gallery-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-item .gallery-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

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

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery .gallery-overlay a {
  color: var(--contrast-color);
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.gallery .gallery-wrapper:hover .gallery-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials Section - TESTIMONIALE
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  background-color: rgba(0, 146, 255, 0.15);
}

.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.testimonials .testimonial-item {
  position: relative;
}

.testimonials .testimonial-item.featured .testimonial-card {
  background-color: var(--accent-color);
  transform: scale(1.05);
}

.testimonials .testimonial-item.featured .testimonial-card .testimonial-meta h3,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-meta h4 {
  color: var(--contrast-color);
}

.testimonials .testimonial-item.featured .testimonial-card .company-logo i {
  color: var(--contrast-color);
}

.testimonials .testimonial-item.featured .testimonial-card .testimonial-body p,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-body .quote-icon {
  color: var(--contrast-color);
}

.testimonials .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.testimonials .testimonial-card:hover:not(.featured .testimonial-card) {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15);
}

.testimonials .testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonials .testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--accent-color);
}

.testimonials .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .testimonial-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.testimonials .testimonial-meta h3 {
  font-size: 1.25rem;
  margin-bottom: 0rem;
}

.testimonials .testimonial-meta h4 {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  margin-bottom: 0rem;
}

.testimonials .testimonial-body {
  position: relative;
}

.testimonials .testimonial-body .quote-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: block;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .testimonials .testimonial-grid {
    gap: 1.5rem;
  }

  .testimonials .testimonial-grid::before {
    width: 150px;
    height: 150px;
  }

  .testimonials .testimonial-card {
    padding: 1.5rem;
  }

  .testimonials .testimonial-image {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-meta h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonials .testimonial-item.featured .testimonial-card {
    transform: scale(1);
  }

  .testimonials .testimonial-header {
    gap: 1rem;
  }

  .testimonials .testimonial-image {
    width: 60px;
    height: 60px;
  }

  .testimonials .company-logo i {
    font-size: 1.25rem;
  }
}

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

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

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact-main-wrapper {
  display: flex;
  gap: 30px;
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact-info {
  width: 100%;
}

/* Responsivitate */
@media (max-width: 768px) {
  .contact-main-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 6px 28px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px color-mix(in srgb, var(--default-color), transparent 85%);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: #000000;
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-color);
}

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

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

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

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 28px color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.contact .contact-form-container>p {
  font-size: 15px;
  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(--background-color), #0092ff 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  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 85%);
}

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

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: #000000;
  box-shadow: 0 6px 15px color-mix(in srgb, var(--default-color), transparent 75%);
}

.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: #0092ff;
}

.form-check-label a:hover {
  color: #0092ff;
  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: 12px;
}

.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(--background-color), #0092ff 15%);
  color: #000000;
  font-size: 16px;
  transition: all 0.3s ease;
}

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

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

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

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

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

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

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

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

.privacy .privacy-content .content-section h2 {
  font-size: 1.75rem;
  color: var(--accent-color) !important;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 0 1px currentColor;
}

.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 {
  color: #000000;
  text-decoration: underline;
}

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

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

.privacy .privacy-contact .contact-details {
  background-color: rgba(0, 0, 0, 0.15);
  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: var(--accent-color);
  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;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Lang button - BUTON LIMBĂ
--------------------------------------------------------------*/
.lang-widget {
  position: fixed;
  bottom: 15px;
  left: 15px;
  width: 90px;
  text-align: center;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.lang-widget .current-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 146, 255, 1);
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}

.lang-widget .current-lang img {
  width: 35px;
  height: 25px;
  border: 1px solid #ddd;
  border-radius: 3px;
  object-fit: cover;
}

.lang-widget .current-lang span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #000000
}

.lang-widget .lang-options {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 55px; /* deasupra butonului */
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 146, 255, 1);
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  color: #000000
}

.lang-widget .lang-options li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px;
  cursor: pointer;
}

.lang-widget .lang-options li:hover {
  background: #fff700;
  border-radius: 10px;
}

.lang-widget .lang-options img {
  width: 35px;
  height: 25px;
  border: 1px solid #ddd;
  border-radius: 3px;
  object-fit: cover;
}

.lang-widget .lang-options span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.lang-widget.open .lang-options {
  display: block;
}

