@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: "Comfortaa",  sans-serif;
  --nav-font: "Open Sans",  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: #e32028; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e32028; /* 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: #04415f;  /* The default color of the main navmenu links */
  --nav-hover-color: #2086b8; /* 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: #010608; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #04415f; /* 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: #e6edf0;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.25);
}

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

.header .topbar .contact-info i {
  font-style: normal;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

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

@media (max-width: 575px) {

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

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

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

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

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

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

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

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

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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: var(--default-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #e32028;
    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: #000000;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

.footer h4 {
  font-size: 16px;
  color: #e32028;
  text-shadow: 0 0 1px currentColor;
  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 a {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-contact p a:hover {
  color: #e32028;
  text-decoration: underline;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

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

/*--------------------------------------------------------------
# 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: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: #1a3a6b;
  color: var(--contrast-color);
}

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

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 35px;
  font-weight: 700;
  text-shadow: 0 0 1px currentColor;
  position: relative;
  color: #e32028;
}

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

.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: 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 {
  padding-top: 60px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding-bottom: 60px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero .hero-image {
  position: relative;
}

.hero .hero-image .main-image {
  border-radius: 20px;
  box-shadow: 0 30px 80px color-mix(in srgb, var(--default-color), transparent 80%);
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hero .hero-image .main-image {
    margin-top: 30px; /* ajustează valoarea după nevoie */
  }
}

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

.hero .hero-content {
  padding-left: 3rem;
}

@media (max-width: 992px) {
  .hero .hero-content {
    padding-left: 0;
  }
}

.hero .hero-content .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

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

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

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

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

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

.hero .hero-stats .stat-group {
  display: flex;
  gap: 3rem;
}

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

  .hero .hero-stats .stat-group .stat {
    width: auto;
    justify-content: center;
  }

  .hero .hero-stats .stat-group .stat:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero .hero-stats .stat-group .stat .stat-text {
    align-items: flex-start;
  }

  .hero .hero-stats .stat-group .stat .stat-text .number,
  .hero .hero-stats .stat-group .stat .stat-text .label {
    text-align: left;
  }
}

.hero .hero-stats .stat-group .stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .hero-stats .stat-group .stat i {
  font-size: 2.5rem;
  color: #ffffff;
  padding: 15px;
  background: #e32028;
  border-radius: 15px;
}

.hero .hero-stats .stat-group .stat .stat-text {
  display: flex;
  flex-direction: column;
}

.hero .hero-stats .stat-group .stat .stat-text .number {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  text-align: left;
}

.hero .hero-stats .stat-group .stat .stat-text .label {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
  margin-top: 5px;
}

.hero .cta-section .cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .hero .cta-section .cta-buttons {
    flex-direction: column;
  }
}

.hero .cta-section .cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  align-items: center;
  gap: 0.5rem;
}

.hero .cta-section .cta-buttons .btn.btn-primary {
  background: #1a3a6b;
  border: none;
  color: #ffffff;
}

.hero .cta-section .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 75%);
  background: #e32028;
}

.hero .cta-section .quick-actions {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .hero .cta-section .quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
  }

  .hero .cta-section .quick-actions .action-link {
    justify-content: flex-start;
  }

  .hero .cta-section .quick-actions .action-link:nth-child(3) {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

.hero .cta-section .quick-actions .action-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero .cta-section .quick-actions .action-link i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .cta-section .quick-actions .action-link span {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 992px) {
  .hero {
    padding: 10px 0 60px;
  }

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

  .hero .hero-stats .stat-group {
    justify-content: center;
  }

  .hero .cta-section .quick-actions {
    justify-content: center;
  }
}

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

.about .content h2 {
  font-size: 27px;
  font-weight: 700;
  text-shadow: 0 0 1px currentColor;
  margin-bottom: 32px;
  line-height: 1.2;
  color: #1a3a6b;
}

.about .content p {
  font-size: 1.05rem;
  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.15);
}

.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: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

.about .cta-buttons .btn-secondary {
  background-color: transparent;
  color: #1a3a6b;
  border: 2px solid #1a3a6b;
}

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

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

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

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

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

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

.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: 700;
  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: 27px;
  font-weight: 700;
  text-shadow: 0 0 1px currentColor;
  font-size: 32px;
  color: #1a3a6b;
}

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

.home-about .about-content p {
  font-size: 1.05rem;
  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: 15px;
  background-color: var(--surface-color);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;

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

.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: 700;
  color: #e32028;
  text-shadow: 0 0 1px currentColor;
}

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


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

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

.services .services-feature {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.services .services-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.services .services-feature .feature-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.services .services-feature .feature-image:hover img {
  transform: scale(1.05);
}

.services .services-feature .feature-content {
  padding: 30px;
}

.services .services-feature .feature-content h3 {
  font-size: 25px;
  font-weight: 700;
  text-shadow: 0 0 1px currentColor;
  margin-bottom: 15px;
  color: #1a3a6b;
}

.services .services-feature .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.services .services-feature .feature-content .feature-details {
  margin-bottom: 25px;
}

.services .services-feature .feature-content .feature-details .detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.services .services-feature .feature-content .feature-details .detail-item i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 20px;
}

.services .services-feature .feature-content .feature-details .detail-item span {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
}

.services .services-feature .feature-content .btn-feature {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 25px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.services .services-feature .feature-content .btn-feature:hover {
  background: color-mix(in srgb, #1a3a6b, black 0%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.services .services-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
}

.services .services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .services-card:hover .card-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

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

.services .services-card h4 {
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 0 0.85px currentColor;
  margin-bottom: 15px;
  color: #1a3a6b;
}

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

.services .cta-section {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  margin-top: 60px;
}

@media (max-width: 768px) {
  .services .cta-section {
    padding: 30px 20px;
  }
}

.services .cta-section .cta-content h3 {
  font-size: 30px;
  font-weight: 700;
  text-shadow: 0 0 1px currentColor;
  margin-bottom: 20px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .services .cta-section .cta-content h3 {
    font-size: 28px;
  }
}

.services .cta-section .cta-content .lead {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.services .cta-section .cta-content .cta-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.services .cta-section .cta-content .cta-highlights li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.services .cta-section .cta-content .cta-highlights li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.services .cta-section .cta-content .cta-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.services .cta-section .cta-content .cta-actions .btn {
  padding: 12px 30px;
  border-radius: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .cta-section .cta-content .cta-actions .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.services .cta-section .cta-content .cta-actions .btn.btn-outline:hover {
  background: #1a3a6b;
  border: 2px solid #1a3a6b;
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.services .cta-section .cta-images {
  position: relative;
}

.services .cta-section .cta-images .main-image {
  border-radius: 15px;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .services .cta-section .cta-images .main-image {
    height: 250px; /* setează înălțimea dorită pe mobil */
    margin-top: 40px; /* setează margin-top dorit pe mobil */
  }
}

@media (max-width: 768px) {
  .services .services-feature .feature-content {
    padding: 25px 20px;
  }

  .services .services-feature .feature-content h3 {
    font-size: 20px;
  }

  .amenities .amenity-card {
    padding: 25px 20px;
  }

  .services .services-card h4 {
    font-size: 16px;
  }
}


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

.why-cards .why-card {
  background-color: var(--surface-color);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-cards .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.why-cards .why-icon {
  margin-bottom: 25px;
}

.why-cards .why-icon i {
  font-size: 48px;
  color: #1a3a6b;
  transition: all 0.3s ease;
}

.why-cards .why-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  text-shadow: 0 0 1px currentColor;
}

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

@media (max-width: 768px) {
  .why-cards .why-card {
    padding: 30px 25px;
  }

  .why-cards .why-icon i {
    font-size: 40px;
  }

  .why-cards .why-content h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section - SECȚIUNE BUTON DE ACȚIUNE
--------------------------------------------------------------*/
.call-to-action {
  padding: 90px 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/timscor-trans-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, var(--default-color), transparent 25%);
}

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

.call-to-action .container {
  position: relative;
  z-index: 2;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}


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

@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: 0.95rem;
  font-weight: 500;
  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 i {
  font-size: 1.25rem;
  line-height: 1;
}

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

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

@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 Showcase Section - FLOTĂ 1
--------------------------------------------------------------*/
.gallery-showcase {
  padding: 60px 0 0px;
  overflow-x: hidden;
}

.gallery-showcase .featured-gallery .main-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.gallery-showcase .featured-gallery .main-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.gallery-showcase .featured-gallery .main-gallery-item:hover .gallery-lightbox {
  opacity: 1;
}

.gallery-showcase .featured-gallery .main-gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-showcase .featured-gallery .main-gallery-item:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-showcase .featured-gallery .main-gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(204, 33, 41, 0.9);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-lightbox .lightbox-icon i {
  color: #ffffff;
  font-size: 1.3rem;
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-lightbox:hover {
  background: var(--accent-color);
  transform: scale(1.2);
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-lightbox:hover .lightbox-icon i {
  color: var(--contrast-color);
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--contrast-color);
  padding: 30px 25px 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-info h4 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0px;
  font-weight: 700;
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.gallery-showcase .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  height: 400px;
}

.gallery-showcase .gallery-grid .gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.gallery-showcase .gallery-grid .gallery-grid-item:hover {
  transform: scale(1.02);
}

.gallery-showcase .gallery-grid .gallery-grid-item:hover .grid-overlay {
  opacity: 1;
}

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

.gallery-showcase .gallery-grid .gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-showcase .gallery-grid .gallery-grid-item .grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-showcase .gallery-grid .gallery-grid-item .grid-overlay i {
  color: var(--contrast-color);
  font-size: 1.75rem;
}

/*--------------------------------------------------------------
# Gallery Section - FLOTĂ 2
--------------------------------------------------------------*/
.gallery {
  padding: 40px 0 0px;
  overflow-x: hidden;
}

.gallery .isotope-container {
  margin-bottom: 40px;
}

.gallery .isotope-container:last-child {
  margin-bottom: 0;
  padding-bottom: 60px;
}

.gallery .isotope-container .gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery .isotope-container .gallery-wrapper:hover {
  transform: translateY(-5px);
}

.gallery .isotope-container .gallery-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery .isotope-container .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery .isotope-container .gallery-content {
  color: white;
  text-align: left;
  width: 100%;
}

.gallery .isotope-container .gallery-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0px;
  color: white;
}

.gallery .isotope-container .gallery-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  opacity: 1;
}

.gallery .isotope-container .gallery-content .gallery-link {
  color: white;
  font-size: 1.25rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.gallery .isotope-container .gallery-content .gallery-link:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.2);
}

/* Responsive mobil */
@media (max-width: 768px) {
  .gallery-showcase .featured-gallery .main-gallery-item,
  .gallery-showcase .gallery-grid,
  .gallery .isotope-container .gallery-wrapper {
    height: auto;
  }

  /* Grid-ul rămâne 2 imagini pe rând */
  .gallery-showcase .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-showcase .gallery-grid .gallery-grid-item img,
  .gallery-showcase .featured-gallery .main-gallery-item img,
  .gallery .isotope-container .gallery-wrapper img {
    height: auto;
  }

  .gallery .isotope-container .gallery-content {
    padding: 15px;
  }

  .gallery .isotope-container .gallery-content h4 {
    font-size: 1.125rem;
  }

  .gallery .isotope-container .gallery-content p {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
# 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.1);
  border-radius: 20px;
}

.hire-details .hire-overview .hire-image .experience-badge {
  position: absolute;
  bottom: -45px;
  right: 90px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 20px;
  width: 185px;
  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.2);
}

.hire-details .hire-overview .hire-image .experience-badge span {
  font-size: 2rem;
  font-weight: 700;
  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: 160px;
    height: 65px;
    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.75rem;
  color: #1a3a6b;
}

.hire-details .hire-overview .hire-services .service-card .content h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #e32028;
  text-shadow: 0 0 1px currentColor;
  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: 700;
  color: #1a3a6b;
  text-shadow: 0 0 1px currentColor;
  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 50%);
  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: 700;
  margin-bottom: 1rem;
  color: #1a3a6b;
  text-shadow: 0 0 1px currentColor;
}

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

/*--------------------------------------------------------------
# Testimonials Section - TESTIMONIALE
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

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

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

.testimonials .testimonial-item {
  background: rgba(204, 33, 41, 0.05);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item:hover {
  border-color: color-mix(in srgb, #1a3a6b, transparent 5%);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.15);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: #1a3a6b;
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: #1a3a6b;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}


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

.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: #1a3a6b;
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #bd1a2d;
  text-shadow: 0 0 1px currentColor;
}

.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: #e32028;
  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: #e32028;
  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(--accent-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), #e32028 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 15%);
}

.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: #1a3a6b;
  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: #e32028;
}

.form-check-label a:hover {
  color: #1a3a6b;
  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), #e32028 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;
  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:  #e32028 !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: #e32028 !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 {
  text-decoration: underline;
  color: #1a3a6b;
}

.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: #e32028 !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: #e32028;
  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: 70px;   /* WhatsApp jos */
  right: 15px;    /* Aliniere la dreapta */
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

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

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

/*--------------------------------------------------------------
# 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(227, 32, 40, 0.5);
  border-radius: 15px;
  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(227, 32, 40, 0.5);
  border-radius: 15px;
  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: 15px;
}

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