
@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: "Montserrat",  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: #163535; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #476f93; /* 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: #323b3b;  /* The default color of the main navmenu links */
  --nav-hover-color: #2c7a7b; /* 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: #323b3b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2c7a7b; /* 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: #eaf9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #081b12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f3028;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #077f46;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2a8f5f;
  --contrast-color: #ffffff;
}

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

body, p, h1, h2, h3, h4, h5, h6, span, a, li {
  -webkit-font-smoothing: antialiased; /* pentru Safari și Chrome */
  -moz-osx-font-smoothing: grayscale; /* pentru Firefox pe macOS */
  text-rendering: optimizeLegibility; /* îmbunătățește claritatea textului */
  -webkit-text-size-adjust: 100%; /* previne scalarea textului pe iOS */
}

/* Ligaturi și kerning */
p, span, a {
  -webkit-font-feature-settings: "liga" 1, "kern" 1;
  font-feature-settings: "liga" 1, "kern" 1;
}

/*--------------------------------------------------------------
# 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: 21px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 10px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    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: #000000;
    font-size: 35px;
    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: 17px;
    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: 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: var(--background-color);
  font-size: 14px;
  padding: 60px 0 60px;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-contact .contact-item .contact-info a {
  font-weight: 400;
  color: #000000;
}

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


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

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

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


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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #000000;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: #000000;
  color: #db4c00;
}

.scroll-top:hover i {
  background-color: #000000;
  color: var(--accent-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);
  position: relative;
  padding-top: 80px;
}

.page-title .heading {
  padding: 80px 0;
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

.page-title nav 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: 32px;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 50%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.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 */
  }
}
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}

.hero .hero-content {
  width: 100%;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero .hero-badge i {
  font-size: 12px;
}

.hero .hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1.2;
  color: var(--default-color);
}

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

.hero .hero-text h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--accent-color);
}

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

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

.hero .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--accent-color);
}

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

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

.hero .hero-images .image-stack {
  position: relative;
  height: 600px;
}

.hero .hero-images .image-stack .main-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.5s ease;
}

.hero .hero-images .image-stack .main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero .hero-images .image-stack .floating-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero .hero-images .image-stack .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.5s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  width: 400px;
}

.hero .hero-images .image-stack .floating-card .agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details {
  flex: 1;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 900;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.hero .hero-images .image-stack .floating-card .agent-info .agent-details p {
  margin: 0 0 8px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transition: all 0.5s ease;
}

@media (max-width: 992px) {
  .hero .hero-images {
    margin-top: 60px;
  }

  .hero .hero-images .image-stack {
    height: 400px;
  }

  .hero .hero-images .image-stack .main-image img {
    height: 350px;
  }

  .hero .hero-images .image-stack .secondary-image {
    top: -20px;
    left: -40px;
    width: 150px;
    height: 150px;
  }

  .hero .hero-images .image-stack .floating-card {
    bottom: 20px;
    left: -20px;
    width: 360px;
    padding: 16px;
  }

  .hero .search-form {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .hero .hero-stats .stat-item {
    padding: 12px 8px;
  }

  .hero .hero-stats .stat-item h3 {
    font-size: 1.5rem;
  }

  .hero .hero-stats .stat-item p {
    font-size: 13px;
  }

  .hero .hero-images .image-stack {
    height: 300px;
  }

  .hero .hero-images .image-stack .main-image img {
    height: 250px;
  }

  .hero .hero-images .image-stack .floating-card {
    bottom: 0px;
    left: 10px;
    width: 365px;
    padding: 12px;
  }

  .hero .hero-images .image-stack .floating-card .agent-details h5 {
    font-size: 12px;
  }

  .hero .hero-images .image-stack .floating-card .agent-details p {
    font-size: 11px;
  }
}

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

.about-home .about-content h2 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
  font-weight: 800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.services .tabs-wrapper {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .nav-tabs {
  border: 0;
  gap: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .services .nav-tabs {
    flex-direction: column;
    gap: 15px;
  }
}

.services .nav-item {
  flex: 1;
  min-width: 0;
}

@media (max-width: 992px) {
  .services .nav-item {
    flex: none;
  }
}

.services .nav-link {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 0%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
  cursor: pointer;
}

.services .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (max-width: 768px) {
  .services .nav-link {
    padding: 20px 15px;
    min-height: 70px;
  }
}

.services .nav-link .tab-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .nav-link .tab-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .services .nav-link .tab-icon {
    width: 40px;
    height: 40px;
  }

  .services .nav-link .tab-icon i {
    font-size: 20px;
  }
}

.services .nav-link .tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.services .nav-link .tab-content h5 {
  margin: 0 0 4px 0;
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .services .nav-link .tab-content h5 {
    font-size: 13px;
  }
}

.services .nav-link .tab-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .services .nav-link .tab-content span {
    font-size: 12px;
  }
}

.services .nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .nav-link:hover::before {
  opacity: 1;
}

.services .nav-link:hover .tab-icon {
  background: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .nav-link:hover .tab-icon i {
  color: var(--accent-color);
}

.services .nav-link:hover .tab-content h5,
.services .nav-link:hover .tab-content span {
  color: var(--contrast-color);
}

.services .nav-link.active {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .nav-link.active::before {
  opacity: 1;
}

.services .nav-link.active .tab-icon {
  background: var(--contrast-color);
}

.services .nav-link.active .tab-icon i {
  color: var(--accent-color);
}

.services .nav-link.active .tab-content h5,
.services .nav-link.active .tab-content span {
  color: var(--contrast-color);
}

.services .tab-content .tab-pane {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .services .tab-content .tab-pane {
    padding: 20px 0;
  }
}

.services .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .services .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.services .content-wrapper .icon-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .content-wrapper .icon-badge i {
  font-size: 30px;
  color: var(--contrast-color);
}

.services .content-wrapper h3 {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .services .content-wrapper h3 {
    font-size: 24px;
  }
}

.services .content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 30px;
}

.services .content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .services .content-wrapper .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.services .content-wrapper .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.services .content-wrapper .feature-grid .feature-item i {
  font-size: 20px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.services .content-wrapper .feature-grid .feature-item span {
  font-size: 17px;
  color: var(--default-color);
  line-height: 1.4;
  font-style: italic;
}

.services .content-wrapper .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .content-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  background: var(--default-color);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--contrast-color);
}

.services .content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}

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

.services .visual-content .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.services .visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.services .visual-content .main-image:hover img {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


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

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


.services2 .service-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 0%);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

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

.services2 .service-card h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #bd1a2d;
}

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


@media (max-width: 768px) {
  .services2 .service-card {
    padding: 25px 20px;
  }
}

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

.services3 .feature-testimonial {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.services3 .testimonial-image {
  height: 100%;
}

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

.services3 .testimonial-content {
  padding: 3rem;
}

.services3 .testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #000000;
}

.services3 .testimonial-content .testimonial-author h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}

.services3 .testimonial-content .testimonial-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .services3 .testimonial-content {
    padding: 2rem;
    text-align: center;
  }

  .services3 .testimonial-content .quote-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .services3 .feature-testimonial {
    margin-top: 2rem;
  }

  .services3 .testimonial-image {
    max-height: 300px;
    overflow: hidden;
  }

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

  .services3 .testimonial-content {
    padding: 1.5rem;
  }

  .services3 .testimonial-content p {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Why Section - DE CE NOI
--------------------------------------------------------------*/
.why {
  /* Custom properties for quick theming */
  --card-radius: 15px;
  --shadow-soft: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  --shadow-hover: 0 16px 44px color-mix(in srgb, var(--default-color), transparent 90%);
  --ring-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  /* Icon badge palettes via color-mix on accent for harmony */
  /* Swiper global fix if a slider is later embedded */
}

.why .intro-panel {
  background: linear-gradient(180deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 96%));
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 15px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.why .intro-panel .preview-visual {
  position: relative;
}

.why .intro-panel .preview-visual img {
  display: block;
}

.why .intro-panel .preview-visual::after {
  content: "";
  position: absolute;
  inset: -10px -8px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 65%), transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
  pointer-events: none;
}

.why .intro-panel .intro-content .intro-title {
  color: var(--accent-color);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}

.why .intro-panel .intro-content .intro-text {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
}

.why .intro-panel .intro-content .intro-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  padding: 8px 0;
}

.why .intro-panel .intro-content .intro-highlights li i {
  color: var(--accent-color);
  font-size: 18px;
}

.why .intro-panel .intro-content .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 10px 18px;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: 0.3s;
}

.why .intro-panel .intro-content .cta-btn:hover {
  transform: translateY(-2px);
  background: var(--default-color);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--contrast-color);
}

.why .intro-panel .intro-content .link-btn {
  color: var(--surface-color);
  border-radius: 10px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--default-color), transparent 0%);
  transition: 0.3s;
}

.why .intro-panel .intro-content .link-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 0%);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--surface-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .why .intro-panel .intro-content .link-btn {
    margin-top: 10px;
  }
}

.why .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) {
  .why .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.why .feature-item {
  position: relative;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: var(--card-radius);
  padding: 22px 18px 20px 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  overflow: hidden;
}

.why .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent-color), transparent 5%);
}

.why .feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

.why .feature-item .f-icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--contrast-color);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 90%);
}

.why .feature-item .f-icon i {
  font-size: 22px;
}

.why .feature-item .f-body .f-title {
  font-size: 19px;
  color: var(--default-color);
  font-weight: 800;
  margin-bottom: 6px;
}

.why .feature-item .f-body .f-text {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 15px;
}

.why .badge-blue {
  background: var(--accent-color);
}

.why .assurance-banner {
  margin-top: 22px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 85%), var(--surface-color));
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 15px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.why .assurance-banner .assurance-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--surface-color);
}

.why .assurance-banner .assurance-icon i {
  font-size: 23px;
}

.why .assurance-banner .assurance-content {
  flex: 1;
}

.why .assurance-banner .assurance-content h5 {
  margin: 0 0 4px 0;
  font-weight: 800;
  color: var(--default-color);
}

.why .assurance-banner .assurance-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 15px;
}

.why .assurance-banner .banner-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 8px 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.why .assurance-banner .banner-btn:hover {
  background: var(--default-color);
  color: var(--contrast-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.why .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .why .intro-panel {
    padding: 24px;
  }

  .why .intro-panel .intro-content .intro-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .why .intro-panel .preview-visual::after {
    width: 90px;
    height: 90px;
  }

  .why .feature-item {
    padding: 18px 16px;
  }

  .why .feature-item .f-icon {
    width: 50px;
    height: 50px;
  }

  .why .feature-item .f-icon i {
    font-size: 20px;
  }

  .why .assurance-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .why .assurance-banner .banner-btn {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 60px 0;
  background: rgba(71, 111, 147, 0.5);
}


.call-to-action .cta-content h2 {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000000;
}

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

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

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

@media (max-width: 768px) {
  .call-to-action .cta-content p {
    text-align: center;
    font-size: 1.05rem;
  }
}

.call-to-action .benefits-list {
  margin-bottom: 2.5rem;
}

.call-to-action .benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .call-to-action .benefits-list .benefit-item {
    justify-content: flex-start;
  }
}

.call-to-action .benefits-list .benefit-item i {
  color: #000000;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.call-to-action .benefits-list .benefit-item span {
  font-size: 1.05rem;
  font-weight: 400;
  color: #000000;
}

.call-to-action .benefits-list .benefit-item span b {
  color: #000000;
}


.call-to-action .cta-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .call-to-action .cta-actions {
    justify-content: center;
  }
}

.call-to-action .cta-actions .btn {
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.call-to-action .cta-actions .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.call-to-action .cta-actions .btn:hover::before {
  transform: translateX(100%);
}

.call-to-action .cta-actions .btn.btn-primary {
  background-color: #000000;
  color: var(--contrast-color);
}

.call-to-action .cta-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, #000000, black 0%);
  transform: translateY(-5px);
  color: var(--accent-color);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 75%);
}

.call-to-action .cta-actions .btn.btn-secondary {
  background-color: #000000;
  color: var(--surface-color);
}

.call-to-action .cta-actions .btn.btn-secondary:hover {
  background-color: #000000;
  color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 75%);
}

@media (max-width: 576px) {
  .call-to-action .cta-actions .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
}

.call-to-action .cta-visual {
  position: relative;
}

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

.call-to-action .cta-visual .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

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

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

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

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

  .call-to-action .cta-content {
    text-align: center;
  }

  .call-to-action .cta-content .benefits-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2.5rem auto;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Faq Section - ÎNTREBĂRI RĂSPUNSURI
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
  background: rgba(71, 111, 147, 0.5);
}

.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 75%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--default-color);
  font-weight: 400;
  font-size: 30px;
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--default-color);
  font-weight: 400;
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--default-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  color: var(--surface-color);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--default-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 80px 40px 80px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.8;
  font-size: 1.15rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# 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: 15px;
  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: 15px;
  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: 15px;
  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: #000000;
}

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

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

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

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

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

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--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(--accent-color), transparent 75%);
  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: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

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

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

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

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

.form-check-label a:hover {
  color: #000000;
  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(--accent-color), transparent 85%);
  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:  var(--accent-color) !important;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 1px currentColor;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

.privacy .privacy-contact .contact-details p strong {
  color: var(--accent-color);
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

.floating_btn {
  position: fixed;
  bottom: 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);
  }
}

