/* Contact Popup Form Responsive */
#popupForm {
  display: none;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 9999 !important;
  background: #fff;
  border: 2px solid #222;
  padding: 16px !important;
  width: 300px !important;
  max-width: 90vw !important;
  max-height: 80vh;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  border-radius: 12px;
  overflow-y: auto;
  box-sizing: border-box !important;
  margin: 0 !important;
}

/* Tactile improvements for mobile */
@media (hover: none) and (pointer: coarse) {
  .nav-items .nav-link,
  .btn-toggle,
  .service-card,
  .portfolio-card,
  .whatsapp-icon,
  .phone-link,
  .location-links a {
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
  }
  
  .nav-items .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .btn-toggle {
    min-width: 44px;
    min-height: 44px;
  }
}
#popupForm label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #222;
  font-size: 1em;
}
#popupForm input, #popupForm textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  font-family: inherit;
  box-sizing: border-box;
}
#popupForm button[type="submit"], #popupForm button[type="button"] {
  width: 48%;
  padding: 8px 0;
  margin-right: 2%;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
#popupForm button[type="button"] {
  background: #aaa;
  color: #222;
  margin-right: 0;
}
#popupForm button[type="submit"]:hover {
  background: #444;
}
#popupForm button[type="button"]:hover {
  background: #888;
}
@media (max-width: 600px) {
  #popupForm {
    width: 280px !important;
    max-width: 90vw !important;
    padding: 12px !important;
    font-size: 0.9em;
    border-radius: 8px;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-height: 80vh;
    overflow-y: auto;
    box-sizing: border-box !important;
    margin: 0 !important;
  }
  #popupForm input, #popupForm textarea {
    font-size: 0.9em;
    padding: 6px;
  }
  #popupForm button[type="submit"], #popupForm button[type="button"] {
    font-size: 0.9em;
    padding: 6px 0;
  }
}
/* PRELOADER FULLSCREEN */
#preloader {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fffdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Split panels */
.split {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100vh;
  z-index: 1;
  transition: transform 2s cubic-bezier(.77,0,.18,1);
  background-size: cover;
  background-repeat: no-repeat;
}

/* Left half */
.split-left {
  left: 0;
  border-right: 2px solid #e0d8c8;
  background-image: url("./imaginiq/stanga.jpg");
  background-position: left center;
}

/* Right half */
.split-right {
  right: 0;
  border-left: 2px solid #e0d8c8;
  background-image: url("./imaginiq/dreapta.jpg");
  background-position: right center;
}

/* Animation classes */
.split-left.slide-left {
  transform: translateX(-100vw);
}

.split-right.slide-right {
  transform: translateX(100vw);
}

/* Logo wrapper */
.preloader-logo-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Logo styling */
.preloader-logo {
  width: 120px;
  height: 120px;
  opacity: 1;
  transition: opacity 0.5s;
}

.preloader-logo.rotate {
  animation: rotateLogo 1.8s cubic-bezier(.77,0,.18,1) 1;
  animation-iteration-count: 1;
}

/* Logo animation */
@keyframes rotateLogo {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Corectie preloader pentru mobil */
@media (max-width: 600px) {
  .split-left, .split-right {
    width: 100vw;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* Reset style*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* General style*/
body {
  margin: 0;
  padding: 0;
  width: 100%;
  color: black;
  line-height: 1.4;
  overflow-x: hidden;
  background-color: #e0ddd2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.language-switcher {
  right: 70px !important;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
section:not(.hero) {
  padding: 6rem 0;
}
section > .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
}
section > .section-subtitle {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  text-align: center;
  margin-bottom: 1rem;
  margin-bottom: 4rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
/* Header style*/
header {
  color: #fff;
  background-color:#b2a290;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
}
header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
}
header .logo a {
  text-decoration: none!important;
  font-family:'Open Sans', sans-serif;
  color: rgb(54, 54, 54);
  font-size: clamp(0.3rem, 2vw + 0.5rem, 1.2rem);
  font-weight: 700;
  letter-spacing: -1.4px;
}
header .btn-toggle {
  background: transparent;
  color: black;
  border: solid 2px black;
  border-radius: 5px;
  padding: 0.5rem;
}
header .navigation {
  flex-basis: 100%;
  margin-top: 1rem;
  display: none;
}
header .navigation.active {
  display: block;
}
header .nav-items {
  list-style: none;
  font-size: clamp(0.2rem, 2vw + 0.5rem, 0.9rem);
}
.nav-items .nav-link {
  text-decoration: none;
  color: black;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  padding: 0.5rem 0.5rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  border-radius: 8px;
}
.nav-items .nav-link:hover {
  display: flex;
  background-color: #373533;
  padding-left: 3rem;
  justify-content: center;
  align-items: center;
  color: #fefcfc;
  transform: translateX(10px);
}
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: -10px!important; /* Ajustează cât de mult iese în afară */
  background-color: transparent; /* Culoarea de fundal a header-ului */
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  animation: dropLogo 2s ease-in-out forwards; /* Adaugă animația */
  z-index: 100;
}
.logo-wrapper img {
  width: 50px; /* Dimensiune de bază cu !important */
  height: auto;
}

@keyframes dropLogo {
  from {
    transform: translate(-50%, -100px); /* Pornire de sus */
    opacity: 0;
  }
  to {
    transform: translate(-50%, 40px); /* Se oprește la poziția dorită */
    opacity: 1;
  }
}
/* Mobile First - Responsive pentru mobil și tablete */
@media (max-width: 1023px) {
  header {
    position: relative !important;
    top: auto;
    left: 0 !important;
    width: 100vw !important;
    height: auto !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem !important;
    z-index: 1000;
  }
  
  .main-content {
    margin-left: 0 !important;
    padding: 0;
    width: 100%;
  }
  
  header > .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
    flex-grow: 0 !important;
    position: relative;
  }
  
  .logo-wrapper {
    position: absolute !important;
    top: -20px !important;
    left: 50% !important;
    transform: translateX(-50%); /* Am eliminat !important pentru a permite animația */
    margin: 0;
    animation: dropLogo 2s ease-in-out forwards !important;
    width: auto;
    flex-shrink: 0;
    z-index: 100;
  }
  
  .logo-wrapper img {
    width: 70px; /* Micșorat pentru tablete cu !important */
    height: auto;
  }
  
  .btn-toggle {
    display: block !important;
    background: transparent;
    border: 2px solid #373533;
    color: #373533;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
  }
  
  .btn-toggle:hover {
    background: #65625f;
    color: #fff;
  }
  
  .navigation {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #b2a290;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 999;
  }
  
  .navigation.active {
    display: block !important;
  }
  
  .nav-items {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100%;
    align-items: stretch !important;
    padding: 0;
    margin: 0;
  }
  
  .nav-items .nav-link {
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: none;
    display: block;
  }
  
  .nav-items .nav-link:hover {
    background: #373533;
    color: #fff;
    padding-left: 2rem;
    transform: none;
    display: block;
  }
  
  .nav-items .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  header {
    padding: 0.5rem !important;
  }
  
  header > .container {
    padding: 0.3rem 0.5rem;
  }
  
  .logo-wrapper {
    top: -25px; /* Am eliminat !important */
  }
  
  .logo-wrapper img {
    width: 45px; /* Micșorat pentru mobile cu !important */
    height: auto;
  }
  
  .btn-toggle {
    padding: 0.4rem;
    font-size: 1.1rem;
    margin-right: 0.5rem;
  }
  
  .nav-items .nav-link {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}
@media (min-width: 1024px) {
  .logo-wrapper img {
    animation: slideInLeft 1s ease-in-out forwards;
    width: 50px; /* Micșorat și mai mult pentru desktop cu !important */
    height: auto;
  }

  header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 150px;
    background-color: #b2a290;
    padding: 20px;
    z-index: 1000;
  }
  .main-content {
    margin-left: 150px; /* Evită suprapunerea cu header */
    padding: 0;
  }
  header > .container {
    /*display: flex;*/
    align-items: flex-start;
    width: 100%;
    padding: 0;
    flex-grow: 1;
  }
  .logo-wrapper {
    display: flex;
    position: relative;
    top: 100px; /* Pentru desktop, poziție fixă */
    background-color: transparent;
    animation: slideInLeft 3s ease-in-out forwards;
    width: 100%;
  }

  @keyframes slideInLeft {
    from {
      transform: translateX(-150px); /* Sigla începe în afara ecranului */
      opacity: 0;
    }
    to {
      transform: translateX(0); /* Se oprește la poziția dorită */
      opacity: 1;
    }
  }
  .btn-toggle {
    display: none;
  }
  .navigation {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .nav-items {
    width: 100%; /* Modificat din max-width: 90% */
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  .nav-items .nav-link {
    max-width: 100%;
    text-align: left;
    padding-left: 0;
  }
  .nav-items .nav-link:hover {
    padding-left: 4rem; /* Nu mai mult! */
    transform: none;
  }
}
/* hero style */
.hero {
  height: calc(100vh - 60px); /* scade înălțimea meniului */
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-wrapper {
  display: flex;
  text-align: center;
  justify-content: center;
  text-wrap: balance;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Acoperă întreaga lățime */
  height: 75%; /* Acoperă doar jumătatea de sus */
  background: url("./imaginiq/gand.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.moving-line {
  position: absolute;
  bottom: 0;
  left: -100px; /* începe în afara ecranului */
  width: 300px;
  height: 8px;
  background: linear-gradient(to right,
    rgba(245, 174, 174, 0),     /* capăt stânga transparent */
    rgba(215, 9, 9, 0.6),   /* mijloc vizibil */
    rgba(60, 1, 1, 0.9),     /* centru intens */
    rgba(245, 29, 29, 0.878),   /* mijloc vizibil */
    rgba(248, 195, 195, 0)      /* capăt dreapta transparent */
  );
  animation: slideLine 5s linear infinite;
  z-index: 2;
}
@keyframes slideLine {
  0% {
    left: -100px;
  }
  100% {
    left: 100%;
  }
}
/* Hero text1 - mijloc */
.hero-text1 {
  position: absolute;
  top: 40%;
  text-align: center;
  padding: 0 10px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: clamp(0.4rem, 1vw + 0.3rem, 1rem);
  border-radius: 5px;
  transform: translateY(-50%) scale(0.8);
  background-color: rgba(0, 0, 0, 0.3);
  filter: blur(5px);
  opacity: 0.7;
  transition: transform 2s ease-in-out, filter 2s ease-in-out,
    opacity 2s ease-in-out;
}
.hero-text1.show {
  transform: translateY(-50%) scale(1);
  filter: blur(0);
  opacity: 1;
}
/* Hero Text 2 - sus stânga */
.hero-text2 {
  position: absolute;
  top: 5%;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-family:'Open Sans', sans-serif ;
  font-style: italic;
  font-size: clamp(0.4rem, 1vw + 0.3rem, 1rem);
  text-align: left;
  padding: 10px;
}
/* Hero Text 3 - jos stânga */
.hero-text3 {
  position: absolute;
  bottom: 5%;
  text-align: center;
  justify-content: center;
  color: white;
  font-size: clamp(0.4rem, 1vw + 0.3rem, 1rem);
  font-family:'Open Sans', sans-serif ;
  font-style: italic;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 5px;
}
@media (min-width: 1200px) {
  .hero {
    min-height: 100vh; /* Ajustează manual */
  }
}
@media (min-width: 1024px) {
  .main-content {
    margin-left: 150px;
    padding: 0;
    min-height: 100vh; /* Asigură că conținutul principal are înălțimea completă a ecranului */
  }
  .hero-text1 {
    padding: 15px 30px;
  }
  .hero-text2 {
    padding: 15px;
  }
  .hero-text3 {
    padding: 10px;
    bottom: 20px;
    text-align: center;
    width: 70%;
  }
}
/*services style*/
.services > .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  gap: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card {
  border: solid 1px black;
  border-radius: 5px;
  text-align: center;
  font-family:'Open Sans', sans-serif;
  padding: 1rem;
  background:linear-gradient(135deg, #eaf2e6 0%, #97ad8a 100%);
  padding: 3rem 1rem;
}
.service-card .service-title {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem);
  margin-bottom: 0.5rem;
  text-align: center;
  color: rgb(44, 43, 43);
  font-family:'Open Sans', sans-serif;
  font-weight: 600 !important;
  line-height: 1.8 !important;
}
.service-card .service-description {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  color: rgb(44, 43, 43);
  margin-bottom: 1rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .services > .container {
    gap: 3rem 1rem;
  }
}
/* VSC Expertise Section */
.vsc-expertise {
  background: linear-gradient(135deg, #eaf2e6 0%, #97ad8a 100%);
  padding: 3rem 0;
  margin: 3rem 0;
  border-radius: 10px;
  border: 1px solid #818686;
}
.vsc-header {
  text-align: center;
  margin-bottom: 3rem;
}
.vsc-title {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  font-weight: 400;
  color: rgb(44, 43, 43);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1rem;
}
.vsc-subtitle {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  color: #404240;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
.vsc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
}
.vsc-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vsc-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.vsc-icon {
  margin-bottom: 1.5rem;
}
.vsc-icon i {
  font-size: 2rem;
  color: #007acc;
  transition: color 0.3s ease;
}
.vsc-feature:hover .vsc-icon i {
  color: #0056b3;
}
.vsc-feature h4 {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  font-weight: 600;
  color: rgb(44, 43, 43);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1rem;
}
.vsc-feature p {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  color: #414241;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .vsc-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .vsc-title {
    font-size: clamp(0.9rem, 2vw + 0.5rem, 1rem);

  }
  .vsc-subtitle {
    font-size: clamp(0.9rem, 2vw + 0.5rem, 1rem);
  }
  .vsc-feature {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 1200px) {
  .vsc-expertise {
    max-width: 1150px;
    margin: 4rem auto;
    padding: 2rem 1rem;
  }
  .vsc-features {
    grid-template-columns: repeat(4, 1fr); /* 4 coloane pe desktop */
    gap: 2.5rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
.services-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto 0 auto;
  text-align: center;
}

.services-image {
  width: 100%;
  aspect-ratio: 3/4;
  display: block;
  border-radius: 5px;
  filter: brightness(0.85);
}
.services-image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  font-family:'Open Sans', sans-serif ;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  width: 90%;
}
@media (min-width: 1024px) {
  .services-image-wrapper {
    max-width: 900px;
  }
}
.price-list {
  background: linear-gradient(135deg, #eaf2e6 0%, #97ad8a 100%);
  padding: 3rem 0rem;
  margin: 4rem 0;
  border-radius: 10px;
  border: 1px solid #818686;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-title {
  text-align: center;
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  font-weight: 600;
  color: rgb(44, 43, 43);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.price-description {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  color: #404240;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  white-space: pre-line;
}
.price-list:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .price-list {
    padding: 2rem 1rem;
    margin: 2rem 1rem;
  }
  .price-title {
    font-size: clamp(0.9rem, 2vw + 0.5rem, 1rem);
    font-family:'Open Sans', sans-serif;
  }
  .price-description {
    font-size: clamp(0.9rem, 2vw + 0.5rem, 1rem);
  }
}

/* portfolio style */
.portfolio {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}
.portfolio > .container {
  display: grid;
  justify-content: center;
  justify-items: center;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.portfolio-card {
  max-width: 200px;
}
.portfolio-card .portfolio-link {
  display: block;
  position: relative;
  height: 300px;
}
.portfolio-card .portfolio-overlay {
  font-weight: bold;
  color: #fff;
  background-color: rgb(174, 160, 143);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.portfolio-card .portfolio-overlay span {
  border: solid 2px black;
  padding: 1rem;
  border-radius: 5px;
  font-family:'Open Sans', sans-serif;
}
.portfolio-card .portfolio-link img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-card .portfolio-link:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-card .portfolio-details {
  text-align: center;
  padding: 1rem;
  font-family:'Open Sans', sans-serif;
}
.portfolio-card .portfolio-details h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: rgb(44, 43, 43);
  font-family: 'Open Sans', sans-serif;
}
.portfolio-card .portfolio-details p {
  font-size: 0.9rem;
  color: #414241;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
}
@media (min-width: 1024px) {
  .portfolio > .container {
    grid-template-columns: repeat(3, 1fr); /* 3 coloane pe desktop */
  }
}
/*about style*/
.about {
  text-align: center;
  font-family:'Open Sans', sans-serif ;
  color: rgb(44, 43, 43);
  line-height: 1.8;
}
.about-members img {
  max-width: 200px !important;
  margin: 0;
  border-radius: 5px;
}
.about-members {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
}
@media (min-width: 1200px) {
  .about-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-members video.about-video {
  max-width: 200px;
  margin: 0 auto;
  border-radius: 5px;
  object-fit: cover;
  margin-bottom: 30px;
  margin-top: 30px;
}

.philosophy-box {
   background: linear-gradient(135deg, #eaf2e6 0%, #97ad8a 100%);
  padding: 3rem 1rem;
  margin: 4rem 0;
  border-radius: 10px;
  border: 1px solid #818686;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.philosophy-title {
  text-align: center;
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  font-weight: 600;
  color: rgb(44, 43, 43);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1rem;
}
.philosophy-description {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  color: #404240;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  white-space: pre-line;
}
.philosophy-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* How We Work Section - Similar to VSC Expertise */
.work-process {
  background: linear-gradient(135deg, #eaf2e6 0%, #97ad8a 100%);
  padding: 3rem 2rem;
  margin: 3rem 0;
  border-radius: 10px;
  border: 1px solid #818686;
}
.work-process .section-title {
  text-align: center;
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  font-weight: 600;
  color: rgb(44, 43, 43);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1rem;
}
.work-process .section-subtitle {
  text-align: center;
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  color: #404240;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 3rem;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
}
.process-steps li {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
  color: #414241;
}

.process-steps li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.process-steps li strong {
  color: rgb(44, 43, 43);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
}
@media (min-width: 768px) {
  .work-process {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
}
@media (max-width: 768px) {
  .work-process {
    padding: 2rem 1rem;
    margin: 2rem 1rem;
  }
  .work-process .section-title {
    font-size: 1rem;
  }
  .work-process .section-subtitle {
    font-size: clamp(0.9rem, 2vw + 0.5rem, 1rem);
    margin-bottom: 2rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-steps li {
    padding: 1.5rem 1rem;
  }
  .process-steps li strong {
    font-size: clamp(0.9rem, 2vw + 0.5rem, 1rem);
  }
}
/* contact style */
.contact {
  position: relative;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: rgb(44, 43, 43);
  line-height: 1.8;
}
.section-subtitle {
  padding: 1rem;
  text-align: center;
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  margin-bottom: 2rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.section-subtitle2
{
  padding: 1rem;
  text-align: center;
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  margin-bottom: 2rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
#popupForm.show-zoom {
  animation: zoomIn 0.4s ease-out forwards;
}
#contactForm label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

#contactForm input,
#contactForm textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: inherit;
}

.contact-row {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  gap: 40px;
  justify-content: center;
}
.location-desc {
  font-size:1rem;
  color: rgb(72, 92, 65);
}
.whatsapp-icon i,
.phone-link i {
  padding-bottom: 20px;
  font-size: 2em;
  transition: transform 0.3s, color 0.3s;
  cursor: pointer;
}
.whatsapp-icon i {
  color: #12d00e;
}
.whatsapp-icon:hover i {
  transform: scale(2.1);
  color: #05e427;
}
.phone-link i {
  color: #222;
}
.phone-link:hover i {
  transform: scale(2.1);
  color: #1571ea;
}
.contact-location {
  margin-bottom: 2.5rem;
  text-align: center;
}
.location-title {
  font-size:clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.bordered-box {
  border: 1px solid #1e1a1a; /* chenar subtil gri */
  padding: 1rem;
  border-radius: 8px; /* colțuri rotunjite, opțional */
  margin-top: 1rem;
  max-width: 400px; /* ajustează cât de lat vrei chenarul */
  margin: 1.5em auto; /* centru orizontal */
}

.location-title i {
  color: #e74c3c;
  margin-right: 8px;
}
.location-desc {
  font-size: clamp(0.9rem, 0.7vw + 0.4rem, 1.1rem)!important;
}
.region {
  font-size: 0.8rem; /* mai mic decât textul normal */
  font-style: italic; /* sau poți folosi font-weight: lighter; */
  color: #3a5933; /* o nuanță mai subtilă */
}
.location-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 0.5rem;
}
.location-links a {
  color: #1d1e1e;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 0.6rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s, color 0.3s;
  cursor: pointer;
}
.location-links a:hover {
  color: #1f90a2;
  transform: scale(1.5);
}
.location-links i {
  font-size: 1.3em;
}
.scroll-to-top {
  position: fixed;
  display: block;
  right: 40px;
  bottom: 20px;
  width: 20px; /* ajustează mărimea după preferințe */
  height: 20px; /* ajustează mărimea după preferințe */
  opacity: 0.8;
  transition: transform 0.3s ease;
  z-index: 999;
}
.scroll-to-top:hover {
  transform: scale(1.2);
  opacity: 1;
}
.contact-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 5px;
  margin-top: 2rem;
}
/* Footer style */
footer {
  background-repeat: no-repeat;
  background-color: #b2a290; /* culoarea de fundal a footer-ului */
  color: black;
  padding: 1.4rem 0;
  gap: 1.4rem;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  min-height: 70px;
}
.footer-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  font-size: 0.6rem;
  font-weight: 400;
}
.footer-logo {
  height: 40px; /* ajustează după preferință */
  vertical-align: middle;
  transition: transform 0.3s ease;
  display: inline-block;
}
.footer-link:hover .footer-logo {
  transform: scale(1.3); /* mărire la hover */
}
@media (min-width: 1024px) {
  footer {
    margin-left: 150px;
    width: calc(100% - 150px);
  }
}
/* Responsive pentru mobil */
@media (max-width: 1023px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
  }
  
  section:not(.hero) {
    padding: 3rem 0;
  }
  
  .hero {
    height: 100vh;
    padding-top: 0;
  }
  
  .hero-text1, .hero-text2, .hero-text3 {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    padding: 0.8rem;
    left: 1rem;
    right: 1rem;
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }
  
  .hero-text1 { top: 35%; }
  .hero-text2 { top: 10%; }
  .hero-text3 { bottom: 10%; }
  
  .services > .container,
  .portfolio > .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .service-card,
  .portfolio-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
  }
  
  .vsc-expertise, .work-process, .price-list {
    padding: 2rem 1rem;
    margin: 2rem 1rem;
  }
  
  .vsc-features, .process-steps {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .about-members {
    display: block;
    gap: 2rem;
  }
  
  .about-members img,
  .about-members video {
    width: 100%;
    max-width: 300px;
    margin: 1rem auto;
    display: block;
  }
  
  .contact-row {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-image {
    max-width: 100%;
    margin-top: 1rem;
  }
  
  .scroll-to-top {
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 0.5rem;
  }
  
  section:not(.hero) {
    padding: 2rem 0;
  }
  
  .hero {
    height: calc(100vh - 20px);
  }
  
  .hero-text1, .hero-text2, .hero-text3 {
    font-size: clamp(0.8rem, 2.8vw, 1rem);
    padding: 0.6rem;
    left: 0.5rem;
    right: 0.5rem;
    width: calc(100vw - 1rem);
  }
  
  .service-card, .portfolio-card {
    padding: 1.5rem 1rem;
  }
  
  .vsc-expertise, .work-process, .price-list {
    padding: 1.5rem 0.5rem;
    margin: 1.5rem 0.5rem;
  }
  
  .services-image-wrapper {
    max-width: 100%;
    margin: 1rem auto;
  }
  
  .scroll-to-top {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
}