@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
  border: none;
  outline: none;
  list-style: none;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 300ms ease;
}

html::-webkit-scrollbar-track {
  background-color: #FAFAFA;
}
html::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-thumb {
  border: 3px solid #FAFAFA;
  background: #3F3F46;
  border-radius: 5px;
}

body {
  font-size: 1em;
}

:before, :after {
  box-sizing: border-box;
}

img {
  width: 100%;
}

section {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1140px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.title_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  
}
.title_container.dark .head_title {
  color: #D4D4D8;
}
.title_container.dark .head_title span {
  color: #F4F4F5;
}
.title_container.dark .subtitle {
  color: #E4E4E7;
}
.title_container .head_title {
  color: #18181B;
  font-size: 2em;
  font-weight: 300;
}
.title_container .head_title span {
  color: #3F3F46;
  font-weight: 700;
  font-size: 1.5em;
}
.title_container .subtitle {
  color: #52525B;
  text-align: center;
}

/* 🔸 Chenar special doar pentru secțiunea Contact */
#contact .title_container {
  background: rgba(0, 0, 0, 0.4);     /* fundal negru transparent */
  padding: 25px 35px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  backdrop-filter: blur(3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

/* Text clar și contrastat peste fundal */
#contact .title_container .head_title {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  font-weight: 400;
}

#contact .title_container .head_title span {
  color: #00bcd4;  /* turcoaz de brand */
  font-weight: 700;
}

#contact .title_container .subtitle {
  color: #f2f2f2;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  text-transform: capitalize;
  border-radius: 10px;
  cursor: pointer;
}

.btn_1 {
  color: #27272A;
  background-color: #F4F4F5;
}
.btn_1:hover {
  background-color: #E4E4E7;
}

.btn_2 {
  color: #F4F4F5;
  background-color: #27272A;
}
.btn_2:hover {
  background-color: #3F3F46;
}

.input_field {
  width: 100%;
  background: #F4F4F5;
  border-radius: 10px;
  border: 0.5px solid #D4D4D8;
  padding: 8px 12px;
  color: #18181B;
  resize: none;
}



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  z-index: 100000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}

header.hidden {
    transform: translateY(-100%); /* Mută header-ul complet în sus, în afara vizibilității */
}


header.sticky {
  background: #FAFAFA;
  padding: 15px 100px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
header.sticky .logo {
  color: #18181B;
}
header.sticky .nav li a {
  color: #18181B;
}
header .logo {
  color: #D4D4D8;
  font-weight: 700;
  font-size: 2em;
  text-decoration: none;
}
header .nav {
  position: relative;
  display: flex;
}
header .nav li {
  margin: 0 0 0 30px;
}
header .nav li a {
  color: #A1A1AA;
  font-weight: 300;
}
header .nav li a:hover {
  color: #71717A;
  transition: 200ms;
}

.hero_section {
  position: relative;
  min-height: 100vh;
  background: url(./image/background-img/image-1.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero_section::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #27272A;
  opacity: 0.6;
  z-index: -1;
}
.hero_section .content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero_section .content h2 {
  font-size: 5em;
  font-weight: 700;
  line-height: 1;
  color: #F4F4F5;
}
.hero_section .content p {
  color: #F4F4F5;
  margin-bottom: 20px;
  opacity: 0.8;
}

.about_section {
  min-height: 100vh;
  overflow-x: hidden;
}
.about_section .head_title {
  color: #18181B;
  font-size: 2em;
  font-weight: 300;
}
.about_section .head_title span {
  color: #3F3F46;
  font-weight: 700;
  font-size: 1.5em;
}
.about_section .row {
  position: relative;
  width: 100%;
  gap: 20px;
  flex: 0 0 50%;
  padding: 15px;
  justify-content: space-between;
}
.about_section .row:nth-child(even) {
  flex-direction: row-reverse;
}
.about_section .row .content {
  position: relative;
  width: 48%;
}
.about_section .row .content p {
  color: #3F3F46;
}
.about_section .row .content p span {
  color: #09090B;
  font-weight: 700;
}
.about_section .row .content .img_box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 2/1;
}
.about_section .row .content .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.system_section {
  position: relative;
  min-height: 100vh;
  background: url(./image/background-img/image-1.jpg) no-repeat center center / cover;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
}
.system_section::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #3F3F46;
  opacity: 0.5;
}
.system_section .container .row {
  padding: 40px 0 0;
}
.system_section .container .row .timeline {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}
.system_section .container .row .timeline::before {
  content: "";
  width: 2px;
  height: calc(100% + 80px);
  left: 50%;
  top: 0;
  background-color: #E4E4E7;
  position: absolute;
}
.system_section .container .row .timeline .row .timeline_item {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}
.system_section .container .row .timeline .row .timeline_item:nth-child(odd) {
  padding-right: calc(50% + 50px);
}
.system_section .container .row .timeline .row .timeline_item:nth-child(odd) .timeline_item_inner::before {
  right: -50px;
}
.system_section .container .row .timeline .row .timeline_item:nth-child(odd) .timeline_item_inner .dot {
  right: -56px;
}
.system_section .container .row .timeline .row .timeline_item:nth-child(even) {
  padding-left: calc(50% + 50px);
}
.system_section .container .row .timeline .row .timeline_item:nth-child(even) .timeline_item_inner::before {
  left: -50px;
}
.system_section .container .row .timeline .row .timeline_item:nth-child(even) .timeline_item_inner .dot {
  left: -54px;
}
.system_section .container .row .timeline .row .timeline_item .timeline_item_inner {
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-left: 0.01px solid #A1A1AA;
  border-top: 0.01px solid #A1A1AA;
  border-right: 0.25px solid #A1A1AA;
  border-bottom: 0.25px solid #A1A1AA;
  z-index: 1;
}
.system_section .container .row .timeline .row .timeline_item .timeline_item_inner::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #E4E4E7;
  top: 36px;
  z-index: -2;
}
.system_section .container .row .timeline .row .timeline_item .timeline_item_inner .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 33px;
  border: 1px solid #E4E4E7;
  border-radius: 50%;
  background: #E4E4E7;
}
.system_section .container .row .timeline .row .timeline_item .timeline_item_inner span {
  font-weight: 500;
  color: #D4D4D8;
  font-style: italic;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.system_section .container .row .timeline .row .timeline_item .timeline_item_inner h4 {
  font-size: 1em;
  color: #E4E4E7;
  margin: 0;
}
.system_section .container .row .timeline .row .timeline_item .timeline_item_inner p {
  color: #D4D4D8;
  margin: 15px 0 0;
}

.service_section {
  gap: 40px;
}
.service_section .collection {
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}
.service_section .collection:hover .row .card {
  opacity: 0.5;
}
.service_section .collection .row {
  position: relative;
  align-items: center;
  justify-content: center;
}
.service_section .collection .row .card {
  position: relative;
  width: 340px;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  background-color: #F4F4F5;
}
.service_section .collection .row .card:hover {
  opacity: 1;
}
.service_section .collection .row .card .img_box {
  position: relative;
  width: 100%;
  height: 300px;
}
.service_section .collection .row .card .img_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.service_section .collection .row .card .footer_card {
  padding: 15px 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service_section .collection .row .card .footer_card h3 {
  font-weight: 400;
}
.service_section .collection .row .card .footer_card label #order {
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.service_section .collection .row .card #check, .service_section .collection .row .card #check2, .service_section .collection .row .card #check3 {
  display: none;
}
.service_section .collection .row .card #check:checked ~ .form_container .form_content, .service_section .collection .row .card #check2:checked ~ .form_container .form_content, .service_section .collection .row .card #check3:checked ~ .form_container .form_content {
  transform: translateX(0px);
}
.service_section .collection .row .card #check:checked ~ .form_container::before, .service_section .collection .row .card #check2:checked ~ .form_container::before, .service_section .collection .row .card #check3:checked ~ .form_container::before {
  transform: scaleX(1);
  transition: transform 0.5s ease-in-out;
  transform-origin: left;
  overflow: hidden;
}
.service_section .collection .row .card .form_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service_section .collection .row .card .form_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAFAFA;
  transform: scaleX(0);
  transition: transform 0.5s ease-in-out;
  transform-origin: left;
  border-radius: 25px;
  overflow: hidden;
  z-index: 2;
}
.service_section .collection .row .card .form_container .form_content {
  position: relative;
  z-index: 3;
  transition: 0.5s;
  transition-delay: 0.1s;
  transform: translateX(-400px);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.service_section .collection .row .card .form_container .form_content .header_form {
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.service_section .collection .row .card .form_container .form_content .form_input_container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.5em;
  font-weight: 300;
  transition: 0.5s;
}
.service_section .collection .row .card .form_container .form_content .form_input_container .form_input {
  font-weight: 300;
  display: grid;
  gap: 3px;
}
.service_section .collection .row .card .form_container .form_content .form_input_container .form_input label {
  font-size: 12px;
  font-weight: 400;
  color: #3F3F46;
}
.service_section .collection .row .card .form_container .form_content .form_input_container .form_input input {
  width: 100%;
  padding: 10px;
  background: #F4F4F5;
  color: #18181B;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 300;
  width: 300px;
}
.service_section .collection .row .card .form_container .form_content .form_input_container select {
  width: 100%;
  text-align: center;
  background: #F4F4F5;
  color: #3F3F46;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 300;
}
.service_section .collection .row .card .form_container .form_content .footer_form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.service_section .collection .row .card .form_container .form_content .footer_form label {
  width: 100%;
  height: 100%;
  transform: 0.5s;
}
.service_section .collection .row .card .form_container .form_content .footer_form label a {
  width: 100%;
}
.service_section .collection .row .card .form_container .form_content .footer_form label button {
  width: 100%;
}


.contact_section {
  min-height: 100vh; /* Se menține 100vh ca la hero_section */
  overflow-x: hidden;
  display: grid;
  align-items: center;
  position: relative;
  background: url('./image/background-img/image-1.jpg') no-repeat center center/cover; /* Background-ul original */
  background-attachment: fixed; /* Se menține fixed pentru desktop */
}

.contact_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 3, 0.158); /* strat alb semitransparent pentru lizibilitate */
  z-index: 0;
}

.contact_section .container {
  position: relative;
  z-index: 1; /* ⚙️ ca elementele să fie vizibile peste imagine */
}


.contact_section .container {
  margin: 40px 0 0;
  display: flex;
  flex: 0 0 50%;
  padding: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.contact_section .container .contact_form {
  border-radius: 10px;
  padding: 40px;
  background: #F4F4F5;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  width: 45%;
}
.contact_section .container .contact_form h3 {
  color: #18181B;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 500;
}
.contact_section .container .contact_form .input_form {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.contact_section .container .map_box {
  position: relative;
  padding: 25px;
  height: 400;
  width: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  background: #F4F4F5;
  border-radius: 10px;
}
.contact_section .container .map_box iframe {
  width: 100%;
  height: 350px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  border: 0;
  border-radius: 5px;
}
.contact_section .container .footer_contact {
  margin-top: 40px;
  width: 100%;
  color: #18181B;
  background: #F4F4F5;
  position: relative;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  padding: 10px;
}
.contact_section .container .footer_contact .item {
  margin: 5px;
  position: relative;
  text-align: center;
}
.contact_section .container .footer_contact .item span {
  opacity: 0.6;
}
.contact_section .container .footer_contact .item p {
  font-weight: 600;
}

.cp {
  padding: 8px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  justify-content: center;
}
.cp p {
  color: #71717A;
}
.cp a {
  color: #27272A;
  font-weight: 600;
}

@media (max-width: 991px) {
  section {
    padding: 60px 20px;
  }
  header {
    padding: 20px 20px;
  }
  header .menuToggle {
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
    filter: invert(1);
  }
  header .menuToggle::before {
    position: absolute;
    content: "\f0c9";
    display: flex;
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-style: normal;
    font: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 30px;
  }
  header .menuToggle.active {
    filter: invert(0);
    z-index: 10000;
  }
  header .menuToggle.active::before {
    position: absolute;
    content: "\f00d";
    display: flex;
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-style: normal;
    font: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 30px;
  }
  header .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F4F4F5;
    transform: translateX(1000px);
    transition: all 0.5s ease;
  }
  header .nav.active {
    transform: translateX(0px);
    transform-origin: left;
  }
  header .nav li a {
    color: #18181B;
    font-size: 28px;
    font-weight: 500;
  }
  header.sticky {
    padding: 10px 20px;
  }
  header.sticky .menuToggle {
    filter: invert(0);
  }
}
@media (max-width: 768px) {
  section {
    padding: 40px 20px;
  }
  .hero_section .content h2 {
    font-size: 4em;
    font-weight: 600;
  }
  .about_section .row {
    padding: 20px 15px;
    margin: 0;
    text-align: center;
  }
  .about_section .row .content {
    margin: 20px 0;
    width: 100%;
  }
  .about_section .row .content:nth-child(even) {
    display: none;
  }
  .system_section .container .row {
    padding: 20px 0 0;
  }
  .system_section .container .row .timeline::before {
    display: none;
  }
  .system_section .container .row .timeline .row .timeline_item {
    width: 100%;
    padding: 0;
  }
  .system_section .container .row .timeline .row .timeline_item:not(:last-child) {
    padding-bottom: 20px;
  }
  .system_section .container .row .timeline .row .timeline_item:nth-child(odd) {
    padding-right: 0;
    text-align: center;
  }
  .system_section .container .row .timeline .row .timeline_item:nth-child(even) {
    padding-left: 0;
    text-align: center;
  }
  .system_section .container .row .timeline .row .timeline_item .timeline_item_inner::before {
    display: none;
  }
  .system_section .container .row .timeline .row .timeline_item .timeline_item_inner .dot {
    display: none;
  }
  .system_section .container .row .timeline .row .timeline_item .timeline_item_inner span {
    font-size: 0.8em;
  }
  .contact_section .container {
    margin: 20px 0 0;
    flex: 0 0 100%;
    padding: 0px;
  }
  .contact_section .container .contact_form {
    padding: 20px;
    width: 100%;
    margin: 20px 0;
  }
  .contact_section .container .map_box {
    width: 100%;
  }
  .contact_section .container .footer_contact {
    margin-top: 20px;
    flex-direction: column;
    padding: 20px;
  }
}
@media (max-width: 425px) {
  p {
    font-size: 0.9em;
  }
  .hero_section .content h2 {
    font-size: 3em;
    font-weight: 600;
  }
  .service_section .collection .row {
    scale: 0.9;
  }
}
@media (max-width: 320px) {
  .service_section .collection .row {
    scale: 0.8;
  }

  
}/*# sourceMappingURL=style.css.map */


/* ===== Sistemul nostru (cu fundal original) ===== */

.system_section {
  position: relative;
  background: url('./image/background-img/image-1.jpg') no-repeat center center / cover;
  background-attachment: fixed;
  padding: 120px 0;
  color: #fff;
}

.system_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* strat semi-transparent peste imagine */
  z-index: 0;
}

.system_section .container {
  position: relative;
  z-index: 2;
}

/* ===== Timeline nou ===== */

.timeline_new {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  margin-top: 50px;
  padding-left: 40px;
  border-left: 3px solid rgba(255,255,255,0.6);
}

.timeline_card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px 25px 25px 80px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
}

.timeline_card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.icon_box {
  position: absolute;
  top: 25px;
  left: -30px;
  background-color: #00bcd4;
  color: white;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0px 3px 10px rgba(0, 188, 212, 0.5);
}

.text_box h3 {
  font-size: 1.3rem;
  color: #00bcd4;
  margin-bottom: 8px;
}

.text_box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.text_box p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .timeline_new {
    border-left: none;
    padding-left: 0;
  }

  .timeline_card {
    padding: 25px 20px;
  }

  .icon_box {
    position: static;
    margin-bottom: 15px;
  }

  .text_box h3 {
    color: #00bcd4;
  }
}


/* ===== Secțiune Servicii / Formular ===== */

.services_content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}

.service_intro {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.center_btn {
  text-align: center;
  margin-top: 40px;
}

.center_btn .btn_2 {
  display: inline-block;
  text-align: center;
  min-width: 250px;
}

.price_link {
  color: #00bcd4;
  font-weight: 600;
  text-decoration: underline;
}

.price_link:hover {
  color: #008ca0;
}

.order_form_container {
  display: none;
  margin-top: 50px;
}

.order_form {
  max-width: 700px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 40px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order_form h3 {
  text-align: center;
  color: #00bcd4;
  margin-bottom: 20px;
}

.order_form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

.order_form input,
.order_form select,
.order_form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  resize: none;
  transition: 0.3s;
}

.order_form input:focus,
.order_form select:focus,
.order_form textarea:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 6px rgba(0,188,212,0.4);
  outline: none;
}

.order_form .form_actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order_form .btn_1,
.order_form .btn_2 {
  width: 48%;
}

@media (max-width: 768px) {
  .order_form_container {
    margin-top: 30px;
  }

  .order_form {
    padding: 25px;
  }

  .order_form .form_actions {
    flex-direction: column;
    gap: 10px;
  }

  .order_form .btn_1,
  .order_form .btn_2 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* FIX PENTRU IMAGINILE DE FUNDAL PE MOBILE ȘI SCHIMBAREA IMAGINII */
  .system_section,
  .contact_section {
    background-image: url('./image/background-img/image-1-mobile.png'); /* Noua imagine de fundal pentru mobil */
    background-attachment: scroll; /* Fundalul se derulează normal cu conținutul */
    background-size: 200%;        /* Asigură că imaginea acoperă toată secțiunea */
    background-position: center center; /* Menține imaginea centrată */
    background-color: #001133;
  }
}