

@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: "Lato",  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: #18444c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ae0d0d; /* 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: #496268;  /* The default color of the main navmenu links */
  --nav-hover-color: #049ebb; /* 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: #496268; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #049ebb; /* 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: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --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(255, 255, 255, 0);
  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: 25px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.4);
}

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

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

.header .logo svg {
  height: 32px;
  padding-right: 5px;
  color: var(--accent-color);
}

@media (max-width: 575px) {
  .header .logo svg {
    height: 28px;
  }
}

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

@media (max-width: 575px) {
  .header .logo h1 {
    font-size: 20px;
  }
}

.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
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

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

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000000;
    font-size: 28px;
    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: 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: 20px;
  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: #000000;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 600;
    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: #ae0d0d;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    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);
    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: #fff;
    position: absolute;
    font-size: 32px;
    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-color: #ffffff;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

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

.footer .footer-about .logo img {
  max-height: 80px;
  margin-right: 6px;
}

.footer .footer-about p {
  font-size: 15px;
  font-family: var(--heading-font);
}

.footer .footer-about p a {
  color: #000000;
}

.footer .footer-about p a:hover {
  color: #ae0d0d;
  text-decoration: underline;
}

.footer h4 {
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  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 i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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: 31px;
  bottom: 0px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 35px;
  height: 35px;
  border-radius: 10px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 25px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top i:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
  color: #000000;
}

.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 {
  text-align: center;
  padding: 120px 0 20px 0;
}

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

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

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 35px;
  font-weight: 800;
  position: relative;
  color: #ae0d0d;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #000000;
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

.section-title2 {
  text-align: center;
  padding: 150px 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 */
  }
}
}

/*--------------------------------------------------------------
# Hero Section - ACASĂ
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero .hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column; /* vertical */
  justify-content: center; /* centru vertical */
  align-items: center; /* centru orizontal */
  padding: 90px 0 60px;
}

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

.hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 20%) 0%, color-mix(in srgb, var(--background-color), transparent 60%) 100%);
  z-index: 2;
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.hero .hero-content .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

.hero .hero-content .col-lg-7,
.hero .hero-content .col-md-10 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hero-content .content-box {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hero-content .content-box .badge-accent {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero .hero-content .content-box h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 1600px; /* controlezi cât de lat poate fi textul */
  width: 100%; /* ocupă 100% din container, dar nu mai mult decât max-width */
  white-space: normal; /* textul se poate rupe pe linii normale */
  text-align: center; /* sau left/right după preferință */
  white-space: nowrap;
  overflow: hidden;
}

.hero .hero-content .content-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 1500px;
}

.hero .hero-content .content-box .cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero .hero-content .content-box .cta-group .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero .hero-content .content-box .cta-group .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .content-box .cta-group .btn.btn-primary:hover {
  background-color: color-mix(in srgb, #000000, transparent 0%);
  border-color: color-mix(in srgb, #000000, transparent 0%);
}

/* Features - aliniere la stanga */
.hero .features-wrapper {
background-color: color-mix(in srgb, #000000, transparent 50%);
border-radius: 25px;
border: 1px solid rgba(174, 13, 13, 0.5);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
justify-content: space-between;
padding: 2rem;
margin-top: 15px;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
text-align: left;
}

.hero .features-wrapper .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.hero .features-wrapper .feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 12px;
  flex-shrink: 0;
}

.hero .features-wrapper .feature-item .feature-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.hero .features-wrapper .feature-item .feature-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.hero .features-wrapper .feature-item .feature-text p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

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

@media (max-width: 992px) {
  .hero .hero-wrapper {
    height: auto;
    min-height: 600px;
  }

  .hero .hero-content .content-box h1 {
    font-size: 2.5rem;
  }

  .hero .floating-features {
    position: relative;
    transform: translateY(0);
    padding: 3rem 0;
  }

  .hero .floating-features .features-wrapper {
    flex-direction: column;
  }

  .hero .floating-features .features-wrapper .feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .hero .floating-features .features-wrapper .feature-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero .hero-wrapper {
    min-height: 500px;
  }

  .hero .hero-image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  .hero .hero-content .content-box h1 {
    font-size: 2.2rem;
  }

  .hero .hero-content .content-box p {
    font-size: 1rem;
  }

  .hero .hero-content .content-box .cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero .hero-content .content-box .cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .hero .hero-content .content-box .info-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .content-box {
    padding: 1rem 0;
  }

  .hero .hero-content .content-box h1 {
    font-size: 1.8rem;
  }
}

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

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

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

.about .stats-container {
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.20);
}

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

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.about .stat-item .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
}

.about .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about .cta-buttons .btn-primary,
.about .cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.about .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .cta-buttons .btn-primary:hover {
  background-color: var(--default-color);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.about .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.about .cta-buttons .btn-secondary:hover {
  background-color: var(--default-color);
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

.about .image-section .image-grid .grid-item:hover img {
  transform: scale(1.05);
}

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

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

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

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

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

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

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

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

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

.home-about .about-image {
  position: relative;
}

.home-about .about-image img {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home-about .about-image .experience-badge {
  position: absolute;
  bottom: 0;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(30%);
}

.home-about .about-image .experience-badge .years {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.home-about .about-image .experience-badge .text {
  font-size: 15px;
  display: block;
}

@media (max-width: 576px) {
  .home-about .about-image .experience-badge {
    right: 15px;
    padding: 15px;
  }

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

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

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

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

.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: 20px;
  border-radius: 8px;
  background-color: var(--surface-color);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-about .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

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

.home-about .feature-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #ae0d0d;
}

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

.home-about .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.home-about .cta-wrapper .btn {
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s;
}

.home-about .cta-wrapper .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.home-about .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.home-about .cta-wrapper .btn-outline {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
}

.home-about .cta-wrapper .btn-outline:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.home-about .certifications-row {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.home-about .certifications-row .certification-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.home-about .certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.home-about .certifications .certification-item {
  flex: 0 0 150px;
  text-align: center;
  transition: transform 0.3s;
}

.home-about .certifications .certification-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}

.home-about .certifications .certification-item:hover {
  transform: translateY(-5px);
}

.home-about .certifications .certification-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 576px) {
  .home-about .certifications .certification-item {
    flex: 0 0 120px;
  }
}

@media (max-width: 768px) {
  .home-about .certifications {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .home-about .about-content {
    margin-top: 60px;
  }
}

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

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

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

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

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

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

.services .intro-content .cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.services .intro-content .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 100%);
  color: var(--contrast-color);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
}

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

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

@media (max-width: 991px) {
  .services .hero-visual {
    margin-top: 3rem;
  }
}

.services .services-grid .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 0;
}

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

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}

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

.services .services-cta .cta-content {
  background: var(--surface-color);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 50px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  position: relative;
  overflow: hidden;
}

.services .services-cta .cta-content>* {
  position: relative;
  z-index: 2;
}

.services .services-cta .cta-content i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.services .services-cta .cta-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.services .services-cta .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.services .services-cta .cta-buttons .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services .services-cta .cta-buttons .btn-book:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .image-showcase {
  position: relative;
}

.why-us .image-showcase .main-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-us .image-showcase .main-image-wrapper .main-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 0 15px 10px;
}

.why-us .image-showcase .main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.why-us .image-showcase .floating-stats {
  position: absolute;
  top: 35px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-us .image-showcase .floating-stats .stat-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px;
  border-radius: 20px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: rotate(0deg);
}

.why-us .image-showcase .floating-stats .stat-badge:nth-child(2) {
  transform: rotate(0deg);
  background: #ae0d0d;
  color: #ffffff;
}

.why-us .image-showcase .floating-stats .stat-badge .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0px;
}

.why-us .image-showcase .floating-stats .stat-badge .stat-text {
  font-size: 0.85rem;
  opacity: 1;
}

.why-us .content-wrapper {
  padding: 0px 0 0px;
  padding-left: 2rem;
}

.why-us .content-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000000;
}

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

.why-us .content-wrapper .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #bd1a2d;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.why-us .content-wrapper .achievement-highlights {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  margin-bottom: 0rem;
  border: 1px solid color-mix(in srgb, #bd1a2d, transparent 75%);
  border-radius: 20px;
  background: var(--surface-color);
  justify-content: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item {
  text-align: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 5px;
}

/* Pentru numere cu + */
.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-number.plus::after {
  content: "+";
  margin-left: 3px;
}

/* Pentru numere cu % */
.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-number.percent::after {
  content: "%";
  margin-left: 3px;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
}

.why-us .content-wrapper .achievement-highlights .highlight-divider {
  width: 2px;
  height: 50px;
  background: color-mix(in srgb, #bd1a2d, transparent 50%);
}

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

  .why-us .content-wrapper {
    padding-left: 0;
    margin-top: 3rem;
  }

  .why-us .content-wrapper h2 {
    font-size: 2.3rem;
  }

  .why-us .content-wrapper .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights .highlight-divider {
    width: 40px;
    height: 1px;
  }

  .why-us .content-wrapper .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why-us .image-showcase .main-image-wrapper .main-image {
    height: 400px;
  }

  .why-us .image-showcase .floating-stats {
    position: relative;
    top: 20px;
    right: 0;
    flex-direction: row;
    justify-content: center;
  }

  .why-us .image-showcase .experience-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 2rem;
    max-width: 100%;
  }
}

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

  .why-us .content-wrapper h2 {
    font-size: 2rem;
  }

  .why-us .content-wrapper .lead-text {
    font-size: 1.1rem;
  }

  .why-us .image-showcase .floating-stats {
    flex-direction: column;
    gap: 10px;
  }

  .why-us .image-showcase .floating-stats .stat-badge {
    min-width: 100px;
    padding: 15px;
  }

  .why-us .image-showcase .floating-stats .stat-badge .stat-number {
    font-size: 1.5rem;
  }
}


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

.call-to-action .cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/call-background/adg-expert-sped-call-01.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .call-to-action .cta-bg {
    background-image: url('../img/call-background/adg-expert-sped-call-mobile.webp');
  }
}

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

.call-to-action .cta-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #ffffff;
}

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

.call-to-action .cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-to-action .cta-buttons .btn.btn-outline {
  background-color: #ae0d0d;
  color: #ffffff;
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: #ffffff;
  color: #ae0d0d;
  transform: translateY(-5px);
}

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

  .call-to-action .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    min-height: 400px;
    padding: 80px 0;
  }

  .call-to-action .cta-content h2 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-content p {
    margin-bottom: 2rem;
  }

  .call-to-action .cta-buttons {
    margin-bottom: 2rem;
  }
}

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

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

.gallery .gallery-item:nth-last-child(-n+4) {
  margin-bottom: 0;
}


.gallery .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
  transition: all 0.3s ease;
}

.gallery .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

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

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

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 300px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

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

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery .gallery-info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery .gallery-info h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.gallery .gallery-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 14px;
  margin-bottom: 15px;
}

.gallery .gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
  .gallery .isotope-filters li {
    padding: 6px 14px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery .gallery-overlay {
    padding: 15px;
  }

  .gallery .gallery-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .gallery .gallery-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .gallery .gallery-link {
    width: 35px;
    height: 35px;
  }

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

/*--------------------------------------------------------------
# Hire Details Section - CARIERĂ
--------------------------------------------------------------*/
.hire-details {
  padding: 60px 0;
}

.hire-details .hire-overview .hire-image {
  position: relative;
}

.hire-details .hire-overview .hire-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.hire-details .hire-overview .hire-image .experience-badge {
  position: absolute;
  bottom: -25px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 20px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hire-details .hire-overview .hire-image .experience-badge span {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hire-details .hire-overview .hire-image .experience-badge p {
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .hire-details .hire-overview .hire-image .experience-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
  }

  .hire-details .hire-overview .hire-image .experience-badge span {
    font-size: 1.8rem;
  }

  .hire-details .hire-overview .hire-image .experience-badge p {
    font-size: 0.75rem;
  }
}

.hire-details .hire-overview .hire-services {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hire-details .hire-overview .hire-services .service-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.hire-details .hire-overview .hire-services .service-card:last-child {
  margin-bottom: 0;
}

.hire-details .hire-overview .hire-services .service-card .icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
}

.hire-details .hire-overview .hire-services .service-card .icon i {
  font-size: 1.8rem;
  color: #000000;
}

.hire-details .hire-overview .hire-services .service-card .content h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 0.75rem;
}

.hire-details .hire-overview .hire-services .service-card .content p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .hire-details .hire-overview .hire-services {
    margin-top: 3rem;
  }
}

.hire-details .key-services {
  padding: 90px 0 0px;
}

.hire-details .key-services h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 1.25rem;
}

.hire-details .key-services .service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.hire-details .key-services .service-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.hire-details .key-services .service-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.hire-details .key-services .cta-wrapper {
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 100px;
}

.hire-details .key-services .cta-wrapper .cta-content {
  width: 60%;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

.hire-details .key-services .cta-wrapper .cta-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #000000;
}

.hire-details .key-services .cta-wrapper .cta-content p {
  margin-bottom: 1.75rem;
}

.hire-details .key-services .cta-wrapper .cta-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hire-details .key-services .cta-wrapper .cta-content .cta-buttons .btn {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.hire-details .key-services .cta-wrapper .cta-content .cta-buttons .btn i {
  font-size: 1.1rem;
  margin-right: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.hire-details .key-services .cta-wrapper .cta-content .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hire-details .key-services .cta-wrapper .cta-content .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 0%);
  transform: translateY(-5px);
  color: #25D366;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hire-details .key-services .cta-wrapper .cta-content .cta-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.hire-details .key-services .cta-wrapper .cta-content .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: #25D366;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hire-details .key-services .cta-wrapper .cta-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 45%;
  z-index: 1;
}

.hire-details .key-services .cta-wrapper .cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 20px;
}

@media (max-width: 991px) {
  .hire-details .key-services .cta-wrapper {
    flex-direction: column;
  }

  .hire-details .key-services .cta-wrapper .cta-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hire-details .key-services .cta-wrapper .cta-image {
    position: relative;
    width: 100%;
  }

  .hire-details .key-services .cta-wrapper .cta-image img {
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .hire-details .intro h2 {
    font-size: 2.25rem;
  }

  .hire-details .key-services h3 {
    font-size: 1.5rem;
  }

  .hire-details .department-stats .stat-item .number {
    font-size: 2.25rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 10%) 100%);
}

.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(--default-color), transparent 50%);
  border-radius: 25px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 700;
  font-size: 15px;
  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 - CONTACT
--------------------------------------------------------------*/
.contact {
  padding: 60px 0;
  overflow: hidden;
}

.contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .contact .contact-info {
    margin-bottom: 40px;
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 30px 35px;
  position: relative;
  overflow: hidden;
}

.contact .contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.contact .contact-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.contact .contact-card .contact-details {
  margin-bottom: 25px;
}

.contact .contact-card .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact .contact-card .contact-details .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact .contact-card .contact-details .contact-item div h4 {
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 5px;
}

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

.contact .contact-card .contact-details .contact-item div p a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.contact .contact-card .contact-details .contact-item div p a:hover {
  color: #ae0d0d;
  text-decoration: underline;
}

.contact .contact-card .contact-details .contact-item div p:last-child {
  margin-bottom: 0;
}

.contact .contact-card .contact-details .contact-item:last-child {
  margin-bottom: 0;
}

.contact .contact-card .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-card .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

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

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 30px 35px;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .php-email-form .form-group label {
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control {
  height: auto;
  border-radius: 15px;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: none;
}

.contact .contact-form-wrapper .php-email-form .form-group textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact .contact-form-wrapper .php-email-form .form-check {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
  padding: 0;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input {
  margin: 0;
  cursor: pointer;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 5px;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-label {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 15px;
  font-weight: 400;
  padding-left: 5px;
  margin: 0;
  line-height: 1.4;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-label a {
  font-weight: 600;
}

.contact .contact-form-wrapper .php-email-form .form-check .form-check-label a:hover {
  color: #ae0d0d;
  text-decoration: underline;
}

.contact .contact-form-wrapper .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-wrapper .php-email-form button:hover {
  background-color: color-mix(in srgb, #000000, transparent 0%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {

  .contact .contact-card,
  .contact .newsletter-card,
  .contact .contact-form-wrapper {
    padding: 25px;
  }
}

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

  .contact .contact-card h3 {
    font-size: 20px;
  }

  .contact .newsletter-card h3 {
    font-size: 18px;
  }
}


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

.floating_btn {
  position: fixed;
  bottom: 60px;   /* WhatsApp jos */
  right: 25px;    /* Aliniere la dreapta */
  width: 50px;
  height: 50px;
  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: #ae0d0d !important;
  margin-bottom: 20px;
  font-weight: 600;
}

.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: #ae0d0d !important;
  margin-bottom: 25px;
  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: #ae0d0d;
}

.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: 40px;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: #ae0d0d !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: #ae0d0d;
  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;
  }
}