/* ==========================================================================
   ARESA - Stiluri CSS principale
   Acest fișier conține toate stilurile pentru site-ul ARESA
   Autor: Echipa ARESA
   Ultima actualizare: Martie 2025
   ========================================================================== */

/* ==========================================================================
   1. Reset CSS și setări de bază
   Resetăm toate marginile, padding-urile și box-sizing pentru toate elementele
   pentru a asigura consistența între browsere
   ========================================================================== */
   *,
   *::before,
   *::after {
       margin: 0;
       padding: 0;
       box-sizing: border-box; /* Asigură că padding-ul și border-ul sunt incluse în lățimea și înălțimea elementelor */
   }
   
   html {
       scroll-behavior: smooth; /* Activează scroll-ul lin când se navighează la ancore */
   }
   
   body {
       font-family: 'Montserrat', sans-serif; /* Font principal pentru tot site-ul */
       line-height: 1.6; /* Spațierea între rânduri pentru o lizibilitate mai bună */
       background-image: radial-gradient(circle at center, #000000, #000000); /* Fundal gradient radial negru */
       color: #fff; /* Culoare text alb pentru contrast bun pe fundal întunecat */
   }
   
   /* ==========================================================================
      2. Cover/Hero Section 
      Secțiunea principală de la începutul paginii, cu imagine de fundal și overlay
      ========================================================================== */
   .cover {
       width: 100%;
       height: 100vh; /* Înălțime completă a viewport-ului */
       position: relative;
       display: flex;
       justify-content: center; /* Centrare orizontală */
       align-items: center; /* Centrare verticală */
       text-align: center;
       background-image: url('img/cover.jpg'); /* Imagine de fundal pentru hero section */
       background-size: cover; /* Acoperă întreaga zonă fără a distorsiona imaginea */
       background-position: center; /* Centrează imaginea */
       background-blend-mode: multiply; /* Efect de blend pentru imagine și overlay */
       z-index: 1;
       
       /* Efect de paralaxă cu mouse */
       transition: background-position 0.5s ease-out; /* Tranziție lină pentru efectul de paralaxă */
   }
   
   /* Overlay întunecat peste imaginea de fundal pentru a îmbunătăți lizibilitatea textului */
   .cover::before {
       content: "";
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.6); /* Overlay semi-transparent negru */
       z-index: -1; /* Poziționat sub conținut */
   }
   
   .cover-content {
       color: #fff;
       max-width: 800px;
       padding: 20px;
       z-index: 2;
   }
   
   .cover-content h1 {
       font-size: 3rem;
       margin-bottom: 20px;
       color: #fff;
   }
   
   .cover-content p {
       font-size: 1.2rem;
       margin-bottom: 30px;
       color: #eee;
   }
   
   /* ==========================================================================
      3. Header și Navigare
      Secțiunea de navigare principală a site-ului
      ========================================================================== */
   header {
       background-color: rgba(0, 0, 0, 0.1);
       padding: 5px 0;
       box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
       position: fixed; /* Fixează header-ul la partea de sus a paginii */
       top: 0;
       left: 0;
       width: 100%; /* Acoperă întreaga lățime a viewport-ului */
       z-index: 100;
   }
   
   /* ==========================================================================
      4. Main Content
      Conținutul principal al paginii
      ========================================================================== */
   main {
       background-color: hwb(0 100% 0% / 0); /* Fundal transparent */
       color: #fff; /* Text alb */
       padding: 120px 0 20px 0; /* Adăugat padding-ul superior pentru a preveni acoperirea conținutului de meniu*/
   }
   
   /* ==========================================================================
      5. Hero Section
      Secțiunea principală de la începutul paginii, cu imagine de fundal și overlay
      ========================================================================== */
   .hero {
       display: flex;
       align-items: center;
       justify-content: center;
       max-width: 1200px;
       margin: 50px auto;
       padding: 20px;
       text-align: center; /* Centrare text în Hero */
   }
   
   .hero-content {
       flex: 1;
       padding-right: 20px;
       text-align: center;
   }
   
   .hero h2 {
       font-size: 2.5rem;
       margin-bottom: 20px;
       color: #fff;
   }
   
   .hero p {
       font-size: 1.2rem;
       margin-bottom: 30px;
       color: #eee;
   }
   
   /* ==========================================================================
      6. Secțiuni
      Secțiunile de conținut ale paginii
      ========================================================================== */
   section {
       max-width: 1200px;
       margin: 50px auto;
       padding: 20px;
   }
   
   section h2 {
       font-size: 2rem;
       text-align: center;
       margin-bottom: 30px;
       color: #fff;
   }
   
   .about-content{
       text-align: center;
   }
   
   .about-content p{
       margin-bottom: 20px;
       color: #eee;
   }
   
   /* ==========================================================================
      7. Servicii
      Secțiunea de servicii a paginii
      ========================================================================== */
   .service-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
   }
   
   .service-item {
       background-color: rgba(255, 255, 255, 0.1);
       padding: 20px;
       border-radius: 8px;
       text-align: center;
       box-shadow: 7px 7px 5px rgba(4, 205, 255, 0.603);
       transition: transform 0.3s ease-in-out;
   }
   
   .service-item:hover {
       transform: translateY(-5px);
   }
   
   .service-item img {
       max-width: 100%;
       height: 200px;
       object-fit: cover;
       border-radius: 8px;
       margin-bottom: 15px;
       box-shadow: 0
        7px 5px  rgba(0, 0, 0, 0.603);
   }
   
   .service-item h3 {
       margin-bottom: 10px;
       color: #fff;
   }
   
   .service-item p {
       color: #eee;
   }
   
   /* ==========================================================================
      8. Portfolio
      Secțiunea de portofoliu a paginii
      ========================================================================== */
   .portfolio-grid{
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
   }
   
   .portfolio-item {
       background-color: rgba(255, 255, 255, 0.1);
       padding: 20px;
       border-radius: 8px;
       text-align: center;
       box-shadow: 7px 7px 5px rgba(4, 205, 255, 0.603);
       transition: transform 0.3s ease-in-out;
   }
   
   .portfolio-item:hover {
       transform: translateY(-5px);
   }
   
   .portfolio-item img {
       max-width: 100%;
       height: 200px;
       object-fit: cover;
       border-radius: 8px;
       margin-bottom: 15px;
   }
   
   .portfolio-item h3 {
       margin-bottom: 10px;
       color: #fff;
   }
   
   .portfolio-item p {
       color: #eee;
   }
   
   /* ==========================================================================
      9. Contact
      Secțiunea de contact a paginii
      ========================================================================== */
   .contact-form{
       text-align: center;
       width: 60%;
       margin: 0 auto;
   }
   
   .contact-form p{
       margin-bottom: 20px;
       color: #eee;
   }
   
   .contact-form input,
   .contact-form textarea {
       width: 100%;
       padding: 10px;
       margin-bottom: 15px;
       border: 1px solid #ddd;
       border-radius: 5px;
       background: rgba(231, 225, 225, 0.911)
   }
   
   .contact-form textarea {
       height: 150px;
   }
   
   /* ==========================================================================
      10. Butoane
      Stilurile pentru butoanele de pe site
      ========================================================================== */
   .btn,
   .view-more,
   .btn-view-more,
   .btn-preturi,
   .btn-contact,
   button[type="submit"] {
       display: inline-block;
       padding: 12px 25px;
       background: linear-gradient(90deg, #3f0bce 0%, #00d4ff 100%);
       color: #fff !important;
       text-decoration: none;
       border-radius: 30px;
       font-weight: 500;
       transition: all 0.3s ease;
       border: none;
       cursor: pointer;
       text-align: center;
       box-shadow: 0 4px 15px rgba(63, 11, 206, 0.2);
       position: relative;
       overflow: hidden;
       z-index: 1;
       appearance: button;
       -webkit-appearance: button;
       line-height: normal;
   }
   
   .btn:hover,
   .view-more:hover,
   .btn-view-more:hover,
   .btn-preturi:hover,
   .btn-contact:hover,
   button[type="submit"]:hover {
       transform: translateY(-3px);
       box-shadow: 0 8px 20px rgba(63, 11, 206, 0.3);
       color: #fff !important;
       text-decoration: none;
   }
   
   .btn:active,
   .view-more:active,
   .btn-view-more:active,
   .btn-preturi:active,
   .btn-contact:active,
   button[type="submit"]:active {
       transform: translateY(1px);
       box-shadow: 0 2px 10px rgba(63, 11, 206, 0.2);
   }
   
   /* Adăugă efect de focus pentru accesibilitate */
   .btn:focus,
   .view-more:focus,
   .btn-view-more:focus,
   .btn-preturi:focus,
   .btn-contact:focus,
   button[type="submit"]:focus {
       outline: 2px solid rgba(63, 11, 206, 0.5);
       outline-offset: 2px;
   }
   
   /* Efect de strălucire pentru butoane */
   .btn::before,
   .view-more::before,
   .btn-view-more::before,
   .btn-preturi::before,
   .btn-contact::before,
   button[type="submit"]::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
       transition: left 0.7s ease;
   }
   
   .btn:hover::before,
   .view-more:hover::before,
   .btn-view-more:hover::before,
   .btn-preturi:hover::before,
   .btn-contact:hover::before,
   button[type="submit"]:hover::before {
       left: 100%;
   }
   
   /* ==========================================================================
      11. Footer
      Secțiunea de subsol a paginii
      ========================================================================== */
   footer {
       text-align: center;
       color: #ffffff;
       padding: 2rem;
       margin-top: 3rem;
       background-color: #0c0d0e;
   }
   
   footer p {
       color: #ffffff;
   }
   
   /* ==========================================================================
      12. Responsive
      Stilurile pentru dispozitive mobile și tablete
      ========================================================================== */
   @media (max-width: 768px) {
       .hero {
           flex-direction: column;
           text-align: center;
       }
   
       .hero-content {
           padding-right: 0;
       }
   
       nav ul {
           display: none; /* Hide nav items on small screens */
       }
   
       .contact-form {
           width: 90%;
       }
   }
   
   /* ==========================================================================
      13. Cover
      Secțiunea de cover a paginii
      ========================================================================== */
   .cover {
       width: 100%;
       height: 100vh;
       position: relative;
       display: flex;
       justify-content: center;
       align-items: center;
       text-align: center;
       background-image: url('img/cover.jpg'); /* Înlocuiește cu calea către imaginea ta */
       background-size: cover;
       background-position: center;
       background-blend-mode: multiply;
       z-index: 1;
   }
   
   .cover::before {
       content: "";
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.6);
       z-index: -1;
   }
   
   .cover-content {
       color: #fff;
       max-width: 800px;
       padding: 20px;
       z-index: 2;
   }
   
   .cover-content h1 {
       font-size: 3rem;
       margin-bottom: 20px;
       color: #fff;
   }
   
   .cover-content p {
       font-size: 1.2rem;
       margin-bottom: 30px;
       color: #eee;
   }
   
   /* ==========================================================================
      14. Nav meniu
      Meniul de navigare principal al site-ului
      ========================================================================== */
   nav ul {
       list-style: none;
       display: flex;
       background-color: transparent;
       transition: background-color 0.3s ease; /* Adaugă o tranziție */
   }
   
   nav ul.opaque { /* Clasa pentru opacitate */
       background-color: rgba(0, 0, 0, 0.555);
   }
   
   nav ul li {
       margin-left: 30px;
   }
   
   nav ul li a {
       text-decoration: none;
       color: #fff;
       font-weight: 500;
       transition: color 0.3s;
   }
   
   nav ul li a:hover {
       color: #007bff;
   }
   
   /* ==========================================================================
      15. Contact Map & Info
      Secțiunea de contact și hartă a paginii
      ========================================================================== */
   .contact-map-info {
       display: flex;
       flex-wrap: wrap;
       align-items: flex-start;
       margin-top: 30px;
       gap: 20px; /* Adăugat gap pentru spațiere între hartă și info */
   }
   
   .contact-map {
      flex: 1 1 500px;
       min-width: 300px; /* Asigură-te că harta nu devine prea mică */
       
   }
   
   .contact-map iframe {
       width: 100%;
       height: 450px;
       border-radius: 8px;
   }
   
   .contact-info {
       flex: 1 1 300px;
       text-align: center;
       padding: 20px;
   }
   
   .contact-info h2 {
       font-size: 1.8rem;
       margin-bottom: 20px;
       color: #fff;
   }
   
   .contact-info .address,
   .contact-info .email,
   .contact-info .phone {
       margin-bottom: 15px;
   }
   
   .contact-info h3 {
       font-size: 1.2rem;
       margin-bottom: 5px;
       color: #eee;
   }
   
   .contact-info p {
       font-size: 1.1rem;
       color: #ddd;
   }
   
   /* ==========================================================================
      16. Pricing Page
      Pagina de prețuri a site-ului
      ========================================================================== */
   .pricing-page {
       padding: 60px 20px;
       text-align: center;
       max-width: 1200px;
       margin: 0 auto;
   }
   
   .pricing-page h2 {
       font-size: 2.5rem;
       margin-bottom: 40px;
       color: #ffffff;
       position: relative;
       display: inline-block;
       padding-bottom: 10px;
   }
   
   .pricing-page h2:after {
       content: "";
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 80px;
       height: 3px;
       background: linear-gradient(90deg, #3f0bce 0%, #00d4ff 100%);
   }
   
   .pricing-grid {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 30px;
       margin-top: 40px;
   }
   
   .pricing-item {
       flex: 1;
       min-width: 280px;
       max-width: 350px;
       padding: 40px 30px;
       border-radius: 15px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       text-align: center;
   }
   
   .pricing-item:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
   }
   
   .pricing-item.standard {
       background-color: #302e2e;
       color: #ffffff;
   }
   
   .pricing-item.standard ul li {
       color: #ddd;
   }
   
   .pricing-item.professional {
       background-color: #00a79b;
       color: #ffffff;
   }
   
   .pricing-item.professional ul li {
       color: #140808;
   }
   
   .pricing-item.enterprise {
       background-color: #f5c325;
       color: #120141;
   }
   
   .pricing-item.enterprise ul li {
       color: #000000;
   }
   
   .pricing-item h3 {
       font-size: 1.5rem;
       margin-bottom: 15px;
       color: inherit;
   }
   
   .pricing-item .price {
       font-size: 2rem;
       font-weight: bold;
       margin-bottom: 30px;
   }
   
   .pricing-item ul {
       list-style: none;
       padding: 0;
       margin: 0 0 30px 0;
       text-align: left;
   }
   
   .pricing-item ul li {
       padding: 10px 0;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       position: relative;
   }
   
   .pricing-item ul li:last-child {
       border-bottom: none;
   }
   
   .pricing-item ul li.no-feature {
       color: #999;
       text-decoration: line-through;
   }
   
   .pricing-item .btn {
       display: inline-block;
       padding: 12px 30px;
       background: rgba(255, 255, 255, 0.1);
       color: inherit;
       text-decoration: none;
       border-radius: 30px;
       font-weight: 500;
       transition: all 0.3s ease;
       border: 2px solid rgba(255, 255, 255, 0.2);
   }
   
   .pricing-item .btn:hover {
       background: rgba(255, 255, 255, 0.2);
       transform: translateY(-3px);
   }
   
   .pricing-item.standard .btn {
       background: linear-gradient(90deg, #3f0bce 0%, #00d4ff 100%);
   }
   
   .pricing-item.professional .btn {
       background: linear-gradient(90deg, #00a79b 0%, #00d4ff 100%);
   }
   
   .pricing-item.enterprise .btn {
       background: linear-gradient(90deg, #f5c325 0%, #ff8e3c 100%);
   }
   
   @media (max-width: 768px) {
       .pricing-grid {
           flex-direction: column;
           align-items: center;
       }
       
       .pricing-item {
           width: 100%;
       }
   }
   
   /* ==========================================================================
      17. Stilul nou pentru meniurile
      Meniul de navigare principal al site-ului
      ========================================================================== */
   nav ul li .menu-btn-container {
     position: relative;
       padding: 2px; /* Am redus paddingul pentru a se potrivi cu meniul */
       background: black;
       border-radius: 0.7em;
        display: inline-block;
       transition: all 0.4s ease;
   }
   nav ul li .menu-btn-container::before {
       content: "";
       position: absolute;
       inset: 0;
       margin: auto;
       border-radius: 0.7em;
       z-index: -10;
       filter: blur(0);
       transition: filter 0.4s ease;
   }
   
   nav ul li .menu-btn-container:hover::before {
       background: linear-gradient(90deg, #03a9f4, #00f7ad);
       filter: blur(1.2em);
   }
   
   nav ul li .menu-btn-container:active::before {
       filter: blur(0.2em);
   }
   
   nav ul li .menu-btn-container a {
     background-color: transparent; /* Am făcut fundalul transparent pentru link-uri */
     color: #ffffff; /* Am setat culoarea textului */
      font-weight: 500; /* Am setat font-weight ul */
      padding: 8px 15px; /* Am adăugat padding pentru text */
   }
   
   /* ==========================================================================
      18. Reset and Base Styles
      Stilurile de bază pentru site
      ========================================================================== */
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Montserrat', sans-serif;
   }
   
   body {
       line-height: 1.6;
       color: #333;
   }
   
   /* ==========================================================================
      19. Header and Navigation
      Secțiunea de navigare principală a site-ului
      ========================================================================== */
   nav {
       display: flex;
       justify-content: space-between;
       align-items: center;
       max-width: 1200px;
       margin: 0 auto;
   }
   
   .logo img {
       max-width: 100px;
   }
   
   nav ul {
       list-style: none;
       display: flex;
       gap: 2rem;
   }
   
   nav a {
       text-decoration: none;
       color: #333;
       font-weight: 500;
   }
   
   nav a:hover {
       color: #007bff;
   }
   
   /* ==========================================================================
      20. Main Content
      Conținutul principal al paginii
      ========================================================================== */
   main {
       padding: 2rem;
   }
   
   /* ==========================================================================
      21. Stiluri specifice pentru pagina ServiciiAR
      Stilurile pentru pagina ServiciiAR
      ========================================================================== */
   .ar-intro {
       max-width: 1200px;
       margin: 0 auto;
       padding: 40px 20px;
       text-align: center;
   }
   
   .ar-intro h2 {
       font-size: 2.5rem;
       margin-bottom: 20px;
       color: #fff;
       position: relative;
       display: inline-block;
   }
   
   .ar-intro h2::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 50%;
       transform: translateX(-50%);
       width: 100px;
       height: 3px;
       background: linear-gradient(90deg, #3f0bce 0%, #ff00ff 100%);
   }
   
   .ar-intro p {
       font-size: 1.2rem;
       line-height: 1.8;
       margin-bottom: 30px;
       color: #eee;
   }
   
   .ar-cards {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 40px;
       max-width: 1200px;
       margin: 0 auto;
       padding: 20px;
   }
   
   .ar-card {
       width: 350px;
       background: rgba(10, 10, 20, 0.8);
       border-radius: 15px;
       overflow: hidden;
       position: relative;
       transition: all 0.4s ease;
       box-shadow: 0 0 20px rgba(63, 11, 206, 0.3);
   }
   
   .ar-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(45deg, rgba(63, 11, 206, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
       opacity: 0;
       transition: opacity 0.4s ease;
       z-index: -1;
       pointer-events: none;
   }
   
   .ar-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 0 30px rgba(63, 11, 206, 0.6);
   }
   
   .ar-card:hover::before {
       opacity: 1;
   }
   
   .ar-card img {
       width: 100%;
       height: auto;
       object-fit: contain;
       transition: transform 0.4s ease;
   }
   
   .ar-card:hover img {
       transform: scale(1.05);
   }
   
   .ar-card-content {
       padding: 20px;
       text-align: center;
   }
   
   .ar-card-content h3 {
       font-size: 1.5rem;
       margin-bottom: 15px;
       color: #fff;
       position: relative;
       display: inline-block;
   }
   
   .ar-card-content h3::after {
       content: '';
       position: absolute;
       bottom: -8px;
       left: 50%;
       transform: translateX(-50%);
       width: 50px;
       height: 2px;
       background: linear-gradient(90deg, #3f0bce 0%, #ff00ff 100%);
       transition: width 0.3s ease;
   }
   
   .ar-card:hover .ar-card-content h3::after {
       width: 100%;
   }
   
   .view-more {
       margin-top: 15px;
       padding: 8px 20px;
       background: linear-gradient(90deg, #3f0bce, #ff00ff);
       color: #fff;
       text-decoration: none;
       border-radius: 30px;
       font-weight: 500;
       transition: all 0.3s ease;
       position: relative;
       overflow: hidden;
   }
   
   .view-more::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
       transition: left 0.7s ease;
   }
   
   .view-more:hover {
       box-shadow: 0 0 15px rgba(63, 11, 206, 0.8);
       transform: scale(1.05);
   }
   
   .view-more:hover::before {
       left: 100%;
   }
   
   @keyframes glowBorder {
       0% {
           background-position: 0 0;
       }
       50% {
           background-position: 400% 0;
       }
       100% {
           background-position: 0 0;
       }
   }
   
   /* Adăugare animație pentru apariția cardurilor */
   .ar-card {
       opacity: 0;
       transform: translateY(30px);
       transition: opacity 0.8s ease, transform 0.8s ease;
   }
   
   .ar-card.active {
       opacity: 1;
       transform: translateY(0);
   }
   
   /* ==========================================================================
      22. Stilizare pentru cover specific pentru pagina AR
      Stilizare pentru cover-ul paginii AR
      ========================================================================== */
   .ar-cover {
       width: 100%;
       height: 50vh;
       position: relative;
       display: flex;
       justify-content: center;
       align-items: center;
       text-align: center;
       background-image: url('img/ar-cover.jpg');
       background-size: cover;
       background-position: center;
       background-blend-mode: multiply;
       z-index: 1;
   }
   
   .ar-cover::before {
       content: "";
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.6);
       z-index: -1;
   }
   
   .ar-cover-content {
       color: #fff;
       max-width: 800px;
       padding: 20px;
       z-index: 2;
   }
   
   .ar-cover-content h1 {
       font-size: 3rem;
       margin-bottom: 20px;
       color: #fff;
       text-shadow: 0 0 10px rgba(63, 11, 206, 0.8);
   }
   
   /* ==========================================================================
      23. Stiluri pentru pagina ochelari.html
      Stilurile pentru pagina ochelari.html
      ========================================================================== */
   .ochelari-intro {
       background: linear-gradient(135deg, rgba(2, 2, 2, 0.664) 0%, rgba(25, 0, 255, 0.37) 100%), url('img/ochelari-cover.jpg');
       background-size: cover;
       background-position: center;
       min-height: 300px;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       padding: 60px 20px;
       margin-bottom: 50px;
       clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
   }
   .ochelari-description {
     
      
       min-height: 150px;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       
       margin-bottom: 50px;
       clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
   }
   
   
   
   .ochelari-intro h1 {
       font-size: 2.5rem;
       margin-bottom: 20px;
       color: #ffffff;
       text-shadow: 0 0 10px rgba(71, 8, 243, 0.63);
   }
   
   .ochelari-intro p {
       font-size: 1.2rem;
       color: #ffffff;
       max-width: 800px;
       margin: 0 auto;
       line-height: 1.6;
   }
   
   .ochelari-cards {
       max-width: 1200px;
       margin: 40px auto;
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 30px;
       padding: 0 20px;
   }
   
   .ochelari-card {
       width: 100%;
       max-width: 380px;
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       background: #fff;
       position: relative;
       display: flex;
       flex-direction: column;
       border: 1px solid rgba(0, 0, 0, 0.1);
   }
   
   .ochelari-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 40px rgba(63, 11, 206, 0.2);
   }
   
   .ochelari-card:before {
       content: "";
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(135deg, rgba(63, 11, 206, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
       opacity: 0;
       transition: opacity 0.3s ease;
       z-index: 1;
       pointer-events: none;
   }
   
   .ochelari-card:hover:before {
       opacity: 1;
   }
   
   .ochelari-card:after {
       content: "";
       position: absolute;
       top: -2px;
       left: -2px;
       right: -2px;
       bottom: -2px;
       background: linear-gradient(135deg, #3f0bce, #00d4ff);
       border-radius: 16px;
       z-index: -1;
       opacity: 0;
       transition: opacity 0.3s ease;
   }
   
   .ochelari-card:hover:after {
       opacity: 1;
   }
   
   .ochelari-card-image {
       width: 100%;
       height: 220px;
       overflow: hidden;
   }
   
   .ochelari-card-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s ease;
   }
   
   .ochelari-card:hover .ochelari-card-image img {
       transform: scale(1.05);
   }
   
   .ochelari-card-content {
       padding: 25px;
       flex-grow: 1;
       display: flex;
       flex-direction: column;
   }
   
   .ochelari-card-content h3 {
       font-size: 1.5rem;
       margin-bottom: 15px;
       color: #333;
       position: relative;
       padding-bottom: 10px;
   }
   
   .ochelari-card-content h3:after {
       content: "";
       position: absolute;
       bottom: 0;
       left: 0;
       width: 50px;
       height: 3px;
       background: linear-gradient(90deg, #3f0bce 0%, #00d4ff 100%);
   }
   
   .ochelari-card-content p {
       font-size: 1rem;
       color: #666;
       line-height: 1.6;
       margin-bottom: 20px;
   }
   
   .ochelari-features {
       list-style-type: none;
       padding: 0;
       margin: 0 0 20px 0;
   }
   
   .ochelari-features li {
       position: relative;
       padding-left: 25px;
       margin-bottom: 10px;
       font-size: 0.95rem;
       color: #555;
   }
   
   .ochelari-features li:before {
       content: "✓";
       position: absolute;
       left: 0;
       color: #3f0bce;
       font-weight: bold;
   }
   
   .ochelari-price {
       margin: 20px 0;
       font-size: 1.5rem;
       font-weight: bold;
       color: #3f0bce;
   }
   
   .btn-view-more {
       margin-top: auto;
       padding: 10px 25px;
       background: linear-gradient(135deg, #3f0bce 0%, #00d4ff 100%);
       color: #fff;
       text-decoration: none;
       border-radius: 30px;
       font-weight: 500;
       transition: all 0.3s ease;
       text-align: center;
       border: none;
       cursor: pointer;
       box-shadow: 0 4px 15px rgba(63, 11, 206, 0.2);
   }
   
   .btn-view-more:hover {
       background: linear-gradient(135deg, #3609b4 0%, #00bfe6 100%);
       transform: translateY(-3px);
       box-shadow: 0 8px 20px rgba(63, 11, 206, 0.3);
   }
   
   .ochelari-applications {
       max-width: 1200px;
       margin: 60px auto;
       padding: 40px 20px;
       text-align: center;
   }
   
   .ochelari-applications h2 {
       font-size: 2rem;
       margin-bottom: 40px;
       color: #ffffff;
       position: relative;
       display: inline-block;
       padding-bottom: 10px;
   }
   
   .ochelari-applications h2:after {
       content: "";
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 80px;
       height: 3px;
       background: linear-gradient(90deg, #3f0bce 0%, #00d4ff 100%);
   }
   
   .applications-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
       gap: 30px;
       margin-top: 40px;
   }
   
   .application-item {
       padding: 30px 20px;
       border-radius: 10px;
       background: #fff;
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       border: 1px solid rgba(0, 0, 0, 0.05);
   }
   
   .application-item:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(63, 11, 206, 0.1);
   }
   
   .application-item i {
       font-size: 2.5rem;
       color: #3f0bce;
       margin-bottom: 20px;
   }
   
   .application-item h3 {
       font-size: 1.3rem;
       margin-bottom: 15px;
       color: #333;
   }
   
   .application-item p {
       font-size: 0.95rem;
       color: #666;
       line-height: 1.6;
   }
   
   /* Media queries pentru responsive design */
   @media (max-width: 768px) {
       .ochelari-intro h1 {
           font-size: 2rem;
       }
       
       .ochelari-intro p {
           font-size: 1rem;
       }
       
       .ochelari-cards {
           gap: 20px;
       }
       
       .ochelari-card {
           max-width: 100%;
       }
       
       .applications-grid {
           grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
           gap: 20px;
       }
   }
   
   @media (max-width: 480px) {
       .ochelari-intro h1 {
           font-size: 1.8rem;
       }
       
       .ochelari-card-content h3 {
           font-size: 1.3rem;
       }
       
       .ochelari-price {
           font-size: 1.3rem;
       }
       
       .applications-grid {
           grid-template-columns: 1fr;
       }
   }
   
   /* ==========================================================================
      24. Stiluri pentru pagina de preturi
      Stilurile pentru pagina de preturi
      ========================================================================== */
   .preturi-hero {
       background: linear-gradient(135deg, rgba(63, 11, 206, 0.8) 0%, rgba(0, 212, 255, 0.8) 100%), url('img/hero-bg.jpg');
       background-size: cover;
       background-position: center;
       min-height: 300px;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       padding: 60px 20px;
       margin-bottom: 50px;
       border-radius: 0 0 50% 50% / 20px;
   }
   
   .preturi-hero-content {
       max-width: 800px;
   }
   
   .preturi-hero h1 {
       font-size: 3rem;
       margin-bottom: 20px;
       color: #fff;
       text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
       animation: glow 2s ease-in-out infinite alternate;
   }
   
   .preturi-hero p {
       font-size: 1.2rem;
       color: #fff;
       text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
   }
   
   .preturi-page {
       max-width: 1200px;
       margin: 0 auto;
       padding: 40px 20px;
       text-align: center;
   }
   
   .preturi-intro {
       max-width: 800px;
       margin: 0 auto 40px;
       color: #eee;
       font-size: 1.1rem;
   }
   
   .preturi-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
       margin: 50px 0;
   }
   
   .preturi-card {
       background: rgba(255, 255, 255, 0.05);
       border-radius: 15px;
       overflow: hidden;
       position: relative;
       transition: all 0.4s ease;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       display: flex;
       flex-direction: column;
       height: 100%;
       border: 1px solid rgba(255, 255, 255, 0.1);
   }
   
   .preturi-card:hover {
       transform: translateY(-15px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(4, 205, 255, 0.4);
   }
   
   .preturi-card::before {
       content: '';
       position: absolute;
       top: -2px;
       left: -2px;
       right: -2px;
       bottom: -2px;
       z-index: -1;
       transform: scale(0.98);
       filter: blur(20px);
       opacity: 0;
       transition: opacity 0.3s ease;
   }
   
   .preturi-card:hover::before {
       opacity: 1;
   }
   
   .preturi-card.standard::before {
       background: linear-gradient(45deg, #3f0bce, #00d4ff);
   }
   
   .preturi-card.professional::before {
       background: linear-gradient(45deg, #00a79b, #00d4ff);
   }
   
   .preturi-card.enterprise::before {
       background: linear-gradient(45deg, #f5c325, #ff8e3c);
   }
   
   .popular-tag {
       position: absolute;
       top: 20px;
       right: -30px;
       background: linear-gradient(135deg, #00a79b, #00d4ff);
       color: #fff;
       padding: 5px 40px;
       font-size: 0.8rem;
       font-weight: bold;
       transform: rotate(45deg);
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
       z-index: 1;
   }
   
   .preturi-card-header {
       padding: 30px 20px;
       text-align: center;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       position: relative;
   }
   
   .preturi-card.standard .preturi-card-header {
       background: linear-gradient(135deg, rgba(63, 11, 206, 0.2), rgba(0, 212, 255, 0.2));
   }
   
   .preturi-card.professional .preturi-card-header {
       background: linear-gradient(135deg, rgba(0, 167, 155, 0.2), rgba(0, 212, 255, 0.2));
   }
   
   .preturi-card.enterprise .preturi-card-header {
       background: linear-gradient(135deg, rgba(245, 195, 37, 0.2), rgba(255, 142, 60, 0.2));
   }
   
   .preturi-card-header h3 {
       font-size: 1.8rem;
       margin-bottom: 15px;
       color: #fff;
   }
   
   .price-tag {
       display: flex;
       align-items: baseline;
       justify-content: center;
   }
   
   .price {
       font-size: 2.5rem;
       font-weight: bold;
       color: #fff;
   }
   
   .period {
       font-size: 1rem;
       color: rgba(255, 255, 255, 0.7);
       margin-left: 5px;
   }
   
   .preturi-card-body {
       padding: 30px 20px;
       flex-grow: 1;
   }
   
   .features-list {
       list-style: none;
       padding: 0;
       margin: 0;
       text-align: left;
   }
   
   .features-list li {
       padding: 10px 0;
       color: #eee;
       display: flex;
       align-items: center;
       border-bottom: 1px solid rgba(255, 255, 255, 0.05);
   }
   
   .features-list li:last-child {
       border-bottom: none;
   }
   
   .features-list li i {
       margin-right: 10px;
       font-size: 0.9rem;
   }
   
   .features-list li .fa-check {
       color: #00d4ff;
   }
   
   .features-list li.no-feature {
       color: rgba(255, 255, 255, 0.5);
   }
   
   .features-list li.no-feature .fa-times {
       color: rgba(255, 255, 255, 0.3);
   }
   
   .preturi-card-footer {
       padding: 20px;
       text-align: center;
       border-top: 1px solid rgba(255, 255, 255, 0.1);
   }
   
   .btn-preturi {
       padding: 12px 30px;
       background: rgba(255, 255, 255, 0.1);
       color: #fff;
       text-decoration: none;
       border-radius: 30px;
       font-weight: 500;
       transition: all 0.3s ease;
       border: 1px solid rgba(255, 255, 255, 0.2);
       position: relative;
       overflow: hidden;
       z-index: 1;
   }
   
   .btn-preturi::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 0;
       height: 100%;
       background: linear-gradient(90deg, #3f0bce, #00d4ff);
       transition: width 0.4s ease;
       z-index: -1;
   }
   
   .btn-preturi:hover::before {
       width: 100%;
   }
   
   .btn-preturi:hover {
       border-color: transparent;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
       transform: translateY(-3px);
   }
   
   .preturi-card.standard .btn-preturi::before {
       background: linear-gradient(90deg, #3f0bce, #00d4ff);
   }
   
   .preturi-card.professional .btn-preturi::before {
       background: linear-gradient(90deg, #00a79b, #00d4ff);
   }
   
   .preturi-card.enterprise .btn-preturi::before {
       background: linear-gradient(90deg, #f5c325, #ff8e3c);
   }
   
   /* ==========================================================================
      25. Stiluri pentru secțiunea FAQ
      Stilurile pentru secțiunea FAQ
      ========================================================================== */
   .preturi-faq {
       max-width: 800px;
       margin: 80px auto;
       padding: 0 20px;
   }
   
   .faq-container {
       margin-top: 40px;
   }
   
   .faq-item {
       margin-bottom: 20px;
       background: rgba(255, 255, 255, 0.05);
       border-radius: 10px;
       overflow: hidden;
       transition: all 0.3s ease;
       border: 1px solid rgba(255, 255, 255, 0.1);
   }
   
   .faq-item:hover {
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       transform: translateY(-3px);
   }
   
   .faq-question {
       padding: 20px;
       display: flex;
       justify-content: space-between;
       align-items: center;
       cursor: pointer;
   }
   
   .faq-question h3 {
       margin: 0;
       font-size: 1.1rem;
       color: #fff;
   }
   
   .faq-toggle {
       color: #00d4ff;
       font-size: 1rem;
       transition: transform 0.3s ease;
   }
   
   .faq-toggle.active {
       transform: rotate(180deg);
   }
   
   .faq-answer {
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.3s ease;
       padding: 0 20px;
   }
   
   .faq-answer.active {
       max-height: 200px;
       padding-bottom: 20px;
   }
   
   .faq-answer p {
       margin: 0;
       color: #eee;
       line-height: 1.6;
   }
   
   @media (max-width: 768px) {
       .preturi-grid {
           grid-template-columns: 1fr;
       }
       
       .preturi-hero h1 {
           font-size: 2.2rem;
       }
       
       .preturi-card {
           max-width: 400px;
           margin: 0 auto;
       }
   }
   
   /* ==========================================================================
      26. Stiluri pentru pagina de contact
      Stilurile pentru pagina de contact
      ========================================================================== */
   .contact-hero {
       background: linear-gradient(135deg, rgba(2, 2, 2, 0.664) 0%, rgba(25, 0, 255, 0.37) 100%), url('img/hero-bg.avif');
       background-size: cover;
       background-position: center;
       min-height: 300px;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       padding: 60px 20px;
       margin-bottom: 50px;
       clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
   }
   
   .contact-hero-content {
       max-width: 800px;
   }
   
   .contact-hero h1 {
       font-size: 3rem;
       margin-bottom: 20px;
       color: #fff;
       text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
       animation: glow 2s ease-in-out infinite alternate;
   }
   
   .contact-hero p {
       font-size: 1.2rem;
       color: #fff;
       text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
   }
   
   .contact-page {
       max-width: 1200px;
       margin: 0 auto 60px;
       padding: 0 20px;
   }
   
   .contact-container {
       display: grid;
       grid-template-columns: 1fr 1.5fr;
       gap: 30px;
   }
   
   .contact-info-card, 
   .contact-form-card {
       background: rgba(255, 255, 255, 0.05);
       border-radius: 15px;
       padding: 40px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       border: 1px solid rgba(255, 255, 255, 0.1);
       height: 100%;
   }
   
   .contact-info-card:hover, 
   .contact-form-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 15px rgba(4, 205, 255, 0.3);
   }
   
   .contact-info-card h2, 
   .contact-form-card h2 {
       font-size: 1.8rem;
       margin-bottom: 30px;
       color: #fff;
       position: relative;
       display: inline-block;
       padding-bottom: 10px;
   }
   
   .contact-info-card h2:after, 
   .contact-form-card h2:after {
       content: "";
       position: absolute;
       bottom: 0;
       left: 0;
       width: 60px;
       height: 3px;
       background: linear-gradient(90deg, #3f0bce 0%, #00d4ff 100%);
   }
   
   .contact-form-card p {
       color: #eee;
       margin-bottom: 25px;
   }
   
   .contact-details {
       margin-top: 30px;
   }
   
   .contact-item {
       display: flex;
       align-items: flex-start;
       margin-bottom: 25px;
   }
   
   .contact-icon {
       width: 40px;
       height: 40px;
       background: linear-gradient(135deg, rgba(63, 11, 206, 0.2), rgba(0, 212, 255, 0.2));
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-right: 15px;
       flex-shrink: 0;
   }
   
   .contact-icon i {
       color: #00d4ff;
       font-size: 1.2rem;
   }
   
   .contact-text h3 {
       font-size: 1.1rem;
       margin-bottom: 5px;
       color: #fff;
   }
   
   .contact-text p {
       color: #ddd;
       font-size: 1rem;
       line-height: 1.5;
   }
   
   .social-media {
       margin-top: 40px;
   }
   
   .social-media h3 {
       font-size: 1.2rem;
       margin-bottom: 15px;
       color: #fff;
   }
   
   .social-icons {
       display: flex;
       gap: 15px;
   }
   
   .social-icon {
       width: 40px;
       height: 40px;
       border-radius: 50%;
       background: rgba(255, 255, 255, 0.1);
       display: flex;
       align-items: center;
       justify-content: center;
       color: #fff;
       font-size: 1.1rem;
       transition: all 0.3s ease;
       border: 1px solid rgba(255, 255, 255, 0.2);
   }
   
   .social-icon:hover {
       transform: translateY(-3px);
       background: linear-gradient(135deg, #3f0bce, #00d4ff);
       color: #fff;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   }
   
   .form-group {
       margin-bottom: 20px;
   }
   
   .form-group input,
   .form-group select,
   .form-group textarea {
       width: 100%;
       padding: 15px;
       background: rgba(255, 255, 255, 0.05);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 8px;
       color: #fff;
       font-size: 1rem;
       transition: all 0.3s ease;
   }
   
   .form-group input:focus,
   .form-group select:focus,
   .form-group textarea:focus {
       outline: none;
       border-color: #00d4ff;
       box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
   }
   
   .form-group select {
       appearance: none;
       background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
       background-repeat: no-repeat;
       background-position: calc(100% - 15px) center;
       padding-right: 40px;
   }
   
   .form-group select option {
       background-color: #1a1a1a;
       color: #fff;
   }
   
   .form-group textarea {
       min-height: 150px;
       resize: vertical;
   }
   
   .btn-contact {
       padding: 15px 30px;
       background: linear-gradient(90deg, #3f0bce 0%, #00d4ff 100%);
       color: #fff;
       border: none;
       border-radius: 30px;
       font-size: 1rem;
       font-weight: 500;
       cursor: pointer;
       transition: all 0.3s ease;
       text-transform: uppercase;
       letter-spacing: 1px;
   }
   
   .btn-contact:hover {
       transform: translateY(-3px);
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   }
   
   .form-message {
       margin-top: 20px;
       padding: 15px;
       border-radius: 8px;
       font-weight: 500;
       text-align: center;
       animation: fadeIn 0.3s ease;
       background-color: rgba(255, 255, 255, 0.1);
       color: #fff;
       border: 1px solid rgba(255, 255, 255, 0.2);
   }
   
   .form-message.success {
       background-color: rgba(39, 174, 96, 0.2);
       color: #2ecc71;
       border: 1px solid rgba(46, 204, 113, 0.3);
   }
   
   .form-message.error {
       background-color: rgba(231, 76, 60, 0.2);
       color: #e74c3c;
       border: 1px solid rgba(231, 76, 60, 0.3);
   }
   
   .contact-map-section {
       max-width: 1200px;
       margin: 60px auto;
       padding: 0 20px;
       text-align: center;
   }
   
   .contact-map-section h2 {
       font-size: 2rem;
       margin-bottom: 30px;
       color: #fff;
       position: relative;
       display: inline-block;
       padding-bottom: 10px;
   }
   
   .contact-map-section h2:after {
       content: "";
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 60px;
       height: 3px;
       background: linear-gradient(90deg, #3f0bce 0%, #00d4ff 100%);
   }
   
   .map-container {
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       border: 1px solid rgba(255, 255, 255, 0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   }
   
   .map-container:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 15px rgba(4, 205, 255, 0.3);
   }
   
   .map-container iframe {
       width: 100%;
       height: 450px;
       display: block;
   }
   
   .faq-section {
       max-width: 800px;
       margin: 80px auto;
       padding: 0 20px;
       text-align: center;
   }
   
   .faq-section h2 {
       font-size: 2rem;
       margin-bottom: 40px;
       color: #fff;
       position: relative;
       display: inline-block;
       padding-bottom: 10px;
   }
   
   .faq-section h2:after {
       content: "";
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 60px;
       height: 3px;
       background: linear-gradient(90deg, #3f0bce 0%, #00d4ff 100%);
   }
   
   @media (max-width: 992px) {
       .contact-container {
           grid-template-columns: 1fr;
       }
       
       .contact-info-card, 
       .contact-form-card {
           padding: 30px;
       }
   }
   
   @media (max-width: 768px) {
       .contact-hero h1 {
           font-size: 2.2rem;
       }
       
       .contact-hero p {
           font-size: 1rem;
       }
       
       .contact-info-card h2, 
       .contact-form-card h2,
       .contact-map-section h2,
       .faq-section h2 {
           font-size: 1.5rem;
       }
       
       .map-container iframe {
           height: 300px;
       }
   }
   
   @keyframes fadeIn {
       from {
           opacity: 0;
           transform: translateY(-10px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   /* Mobile Menu Toggle Button */
   .mobile-menu-toggle {
       display: none;
       flex-direction: column;
       justify-content: space-between;
       width: 30px;
       height: 21px;
       cursor: pointer;
       z-index: 1000;
       position: relative;
   }
   
   .mobile-menu-toggle span {
       display: block;
       height: 3px;
       width: 100%;
       background-color: #fff;
       border-radius: 3px;
       transition: all 0.3s ease;
   }
   
   /* Mobile Responsive Styles */
   @media (max-width: 768px) {
       .mobile-menu-toggle {
           display: flex;
       }
   
       nav ul {
           position: fixed;
           top: 0;
           right: -100%;
           width: 80%;
           height: 100vh;
           background-color: rgba(0, 0, 0, 0.95);
           flex-direction: column;
           justify-content: center;
           align-items: center;
           transition: right 0.3s ease;
           z-index: 999;
           padding: 50px 0;
           box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
       }
   
       nav ul.active {
           right: 0;
           display: flex;
       }
   
       nav ul li {
           margin: 15px 0;
       }
   
       .hero {
           flex-direction: column;
           text-align: center;
       }
   
       .hero-content {
           padding-right: 0;
       }
   
       .contact-form {
           width: 90%;
       }
   
       /* Hamburger Animation */
       .mobile-menu-toggle.active span:nth-child(1) {
           transform: translateY(9px) rotate(45deg);
       }
   
       .mobile-menu-toggle.active span:nth-child(2) {
           opacity: 0;
       }
   
       .mobile-menu-toggle.active span:nth-child(3) {
           transform: translateY(-9px) rotate(-45deg);
       }
   }
   
   /* Prevent scrolling when mobile menu is open */
   body.menu-open {
       overflow: hidden;
   }
   
   /* Responsive improvements for mobile devices */
   @media (max-width: 768px) {
       /* Typography adjustments */
       h1 {
           font-size: 2.2rem !important;
       }
       
       h2 {
           font-size: 1.8rem !important;
       }
       
       h3 {
           font-size: 1.5rem !important;
       }
       
       p {
           font-size: 1rem !important;
       }
       
       /* Spacing adjustments */
       section {
           padding: 40px 15px !important;
           margin: 30px auto !important;
       }
       
       /* Cover adjustments */
       .cover-content, .ar-cover-content {
           padding: 15px !important;
       }
       
       /* Card adjustments */
       .service-item, .portfolio-item, .ar-card {
           margin-bottom: 30px !important;
       }
       
       /* Fix for images
       img {
           max-width: 100% !important;
           height: auto !important;
       }   */
       
       /* Improved touch targets */
       button, 
       button[type="submit"],
       .btn, 
       .view-more,
       .btn-view-more,
       .btn-preturi,
       .btn-contact,
       input[type="submit"],
       nav a {
           min-height: 44px !important;
           min-width: 44px !important;
           padding: 12px 20px !important;
           font-size: 16px !important;
           display: inline-block !important;
           text-align: center !important;
           margin: 10px 0 !important;
       }
       
       /* Fix for form elements */
       input, 
       textarea, 
       select {
           font-size: 16px !important; /* Prevents iOS zoom on focus */
       }
   }
   
   /* Extra small devices */
   @media (max-width: 480px) {
       /* Further adjustments for very small screens */
       h1 {
           font-size: 1.8rem !important;
       }
       
       h2 {
           font-size: 1.5rem !important;
       }
       
       .logo img {
           max-width: 80px !important;
       }
       
       /* Adjust padding for header */
       header {
           padding: 10px 15px !important;
       }
       
       /* Adjust main content padding */
       main {
           padding-top: 80px !important;
       }
   }
   
               /* Stiluri pentru cardurile flip */
               .applications-grid {
                   display: grid;
                   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                   gap: 30px;
                   margin-top: 40px;
               }
               
               .flip-card {
                   background-color: transparent;
                   width: 100%;
                   height: 300px;
                   perspective: 1000px;
                   border-radius: 15px;
               }
               
               .flip-card-inner {
                   position: relative;
                   width: 100%;
                   height: 100%;
                   text-align: center;
                   transition: transform 0.8s;
                   transform-style: preserve-3d;
                   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                   border-radius: 15px;
               }
               
               .flip-card:hover .flip-card-inner {
                   transform: rotateY(180deg);
               }
               
               .flip-card-front, .flip-card-back {
                   position: absolute;
                   width: 100%;
                   height: 100%;
                   -webkit-backface-visibility: hidden;
                   backface-visibility: hidden;
                   border-radius: 15px;
                   overflow: hidden;
                   display: flex;
                   flex-direction: column;
                   justify-content: center;
                   align-items: center;
                   padding: 20px;
               }
               
               .flip-card-front {
                   background: whitesmoke;
                   color: #070707;
                   border: 1px solid rgba(63, 11, 206, 0.2);
               }
               
               .flip-card-front i {
                   font-size: 3rem;
                   margin-bottom: 20px;
                   color: #3f0bce;
               }
               
               .flip-card-front h3 {
                   margin-bottom: 15px;
                   font-size: 1.5rem;
               }
               
               .flip-card-front p {
                   font-size: 0.95rem;
                   line-height: 1.5;
               }
               
               .flip-card-back {
                   background: linear-gradient(135deg, rgba(63, 11, 206, 0.9) 0%, rgba(0, 212, 255, 0.9) 100%);
                   color: white;
                   transform: rotateY(180deg);
                   display: flex;
                   flex-direction: column;
                   justify-content: flex-start;
                   align-items: center;
                   text-align: center;
               }
               
               .flip-card-back img {
                   width: 100%;
                   height: 150px;
                   object-fit: cover;
                   border-top-left-radius: 15px;
                   border-top-right-radius: 15px;
               }
               
               .flip-card-content {
                   padding: 15px;
                   display: flex;
                   flex-direction: column;
                   justify-content: space-between;
                   align-items: center;
                   flex-grow: 1;
               }
               
               .flip-card-back h3 {
                   margin-bottom: 10px;
                   font-size: 1.5rem;
               }
               
               .flip-card-back p {
                   font-size: 0.9rem;
                   line-height: 1.5;
                   margin-bottom: 15px;
               }
               
               .btn-small {
                   display: inline-block;
                   padding: 8px 15px;
                   background-color: rgba(255, 255, 255, 0.2);
                   color: white;
                   text-decoration: none;
                   border-radius: 20px;
                   font-size: 0.9rem;
                   transition: all 0.3s ease;
                   border: 1px solid rgba(255, 255, 255, 0.4);
               }
               
               .btn-small:hover {
                   background-color: rgba(255, 255, 255, 0.3);
                   transform: translateY(-2px);
               }
               
               /* Responsive */
               @media (max-width: 768px) {
                   .applications-grid {
                       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                   }
                   
                   .flip-card {
                       height: 280px;
                   }
                   
                   .flip-card-front i {
                       font-size: 2.5rem;
                   }
                   
                   .flip-card-front h3,
                   .flip-card-back h3 {
                       font-size: 1.3rem;
                   }
               }
   
    /* usecase carduri*/
               .usecase-grid {
                   display: grid;
                   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                   gap: 20px;
                   margin-top: 40px;
               }
   
   /* Stiluri pentru secțiunea usecase */
   .usecase-section {
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 20px;
       margin: 20px 0;
       border-radius: 10px;
       color: #fff;
   }
   
   .usecase-content {
       display: flex;
       align-items: center;
       justify-content: space-between;
       width: 100%;
   }
   
   .usecase-text {
       flex: 1;
       padding: 20px;
   }
   
   .usecase-text h2 {
       font-size: 2rem;
       margin-bottom: 10px;
   }
   
   .usecase-text p {
       font-size: 1.2rem;
       margin-bottom: 20px;
   }
   
   .usecase-text .btn-view-more {
       display: inline-block;
       padding: 10px 20px;
       background-color: #fff;
       color: #000;
       text-decoration: none;
       border-radius: 5px;
       font-weight: bold;
       transition: background-color 0.3s ease;
       
   }
   
   .usecase-text .btn-view-more:hover {
       background-color: #200c3f;
   }
   
   .usecase-image {
       flex: 1;
       display: flex;
       justify-content: center;
       align-items: center;
       padding: 20px;
   }
   
   .usecase-image img {
       max-width: 90%;
       max-height: 300px;
       border-radius: 10px;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   }
   
   .usecase-section:hover {
       transform: scale(1.05);
       transition: transform 0.3s ease-in-out;
   }
   
   .usecase-intro h1 {
       font-size: 2.5rem;
       margin-bottom: 20px;
       color: #ffffff;
       position: center;
   }

   .usecase-detail h2 {
    font-size: 1.5em;
    text-align: left;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 1.4;
}

/* Stilul implicit pentru logo */
.logo img {
    max-width: 80px; /* Dimensiunea implicită a logo-ului */
    height: auto; /* Păstrează proporțiile imaginii */
}

/* Stiluri pentru ecrane mai mici (modul tabletă) */
@media (max-width: 768px) {
    .logo img {
        max-width: 100px; /* Redimensionează logo-ul pentru ecrane mai mici */
        height: auto; /* Păstrează proporțiile imaginii */
    }
}

/* Stiluri pentru ecrane foarte mici (modul mobil) */
@media (max-width: 480px) {
    .logo img {
        max-width: 80px; /* Dimensiune mai mică pentru telefoane */
        height: auto; /* Păstrează proporțiile imaginii */
    }
}