         :root {
            --primary-blue: #0056b3; /* Un albastru corporate, puternic */
            --light-blue: #007bff;   /* O varianta mai deschisa pentru hover */
            --dark-text: #212529;    /* Negru-gri pentru text principal */
            --secondary-text: #6c757d; /* Gri pentru text secundar */
            --background-light: #f8f9fa; /* Gri foarte deschis pentru fundal */
            --background-white: #ffffff;
            --border-color: #dee2e6;
            --font-main: 'Poppins', 'Segoe UI', 'Roboto', sans-serif;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
        }

        /* Reset & General Styles */
        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-main);
            background-color: var(--background-light);
            color: var(--dark-text);
            line-height: 1.7;
            font-size: 16px;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-weight: 600;
        }

        /* Header & Navigation */
        .header {
            background-color: var(--background-white);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: padding 0.3s ease;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
			flex-wrap: wrap;
        }
		
		



        .logo {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo img {
    height: 60px;     /* micșorare corectă */
    width: auto;      /* păstrează proporțiile */
    margin-right: 10px;
}

.logo span {
    color: red;
}


        .nav-links {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--dark-text);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        /* Hero Section */
                .hero {
    background-image: url("../images/1.png"); /* aici pui poza ta */
    background-size: cover;      /* acoperă toată secțiunea */
    background-position: center; /* centrează poza */
    background-repeat: no-repeat;
    padding: 200px 0 150px 0;
    text-align: left;
    color: white; /* ca textul să fie vizibil pe poza */
    position: relative;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5); /* overlay semitransparent */
    z-index: -1; /* pune overlay sub text */
}
  
        
        .hero-content {
            max-width: 650px;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--primary-text);
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--secondary-text);
            margin-bottom: 2.5rem;
        }
        
        .cta-button {
            background-color: var(--primary-blue);
            color: var(--background-white);
            border: 2px solid var(--primary-blue);
            padding: 14px 30px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: var(--light-blue);
            border-color: var(--light-blue);
        }

        /* General Section Styling */
        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--secondary-text);
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        /* Why Us Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .feature-item {
            text-align: center;
            padding: 20px;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        .feature-item h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        
        .feature-item p {
            color: var(--secondary-text);
            font-size: 0.95rem;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--background-white);
            padding: 35px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary-blue);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .service-card p, .service-card li {
            color: var(--secondary-text);
            font-size: 0.95rem;
        }
        
        .service-card ul {
            padding-left: 20px;
            margin-top: 1rem;
        }

        /* Process Section */
        .process-container {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-top: 60px;
            position: relative;
        }

        .process-step {
            background: var(--background-white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
            width: 23%;
        }

        .process-step .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 50%;
            background-color: var(--primary-blue);
            color: white;
            font-weight: 600;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .process-step h3 {
            font-size: 1.2rem;
        }
        
        .process-step p {
            font-size: 0.9rem;
            color: var(--secondary-text);
        }

        /* Contact Section */
        .contact-wrapper {
            max-width: 700px;
            margin: 0 auto;
            background: var(--background-white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .contact-form input, .contact-form textarea {
            width: 100%;
            background-color: var(--background-light);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            padding: 14px;
            margin-bottom: 20px;
            color: var(--dark-text);
            font-size: 1rem;
            font-family: var(--font-main);
            box-sizing: border-box;
        }

        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.25);
        }

        /* Footer */
        .footer {
            padding: 40px 0;
            background-color: var(--background-white);
            border-top: 1px solid var(--border-color);
            text-align: center;
            font-size: 0.9rem;
            color: var(--secondary-text);
        }
		
		
		.alert {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: opacity 0.3s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

    














/* NAVBAR GENERAL */
    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background: #fff;   /* fundal alb */
      color: #333;        /* text inchis */
      position: relative;
      border-bottom: 1px solid #ddd; /* linie subtilă jos */
      z-index: 10;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
      color: #333;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 20px;
      transition: max-height 0.4s ease-in-out;
    }

    .nav-links a {
      color: #333;  /* link-uri gri inchis/negru */
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #007bff; /* accent albastru la hover */
    }

    /* HAMBURGER BUTTON */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #333; /* bara hamburger in negru */
      transition: all 0.3s;
    }

    /* MOBILE STYLES */
/* MOBILE STYLES */
@media (max-width: 768px) {
  /* NAVBAR / HAMBURGER */
  .nav-links {
    position: absolute;
    top: 100%; /* apare imediat sub navbar */
    left: 0;
    width: 100%;  /* doar dropdown-ul ocupă lățimea */
    background: #fff;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0; /* ascuns implicit */
    border-bottom: 1px solid #ddd;
  }

  .nav-links.show {
    max-height: 300px; /* meniul coboară */
  }

  .nav-links a {
    font-size: 14px;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #eee;
  }

  .hamburger {
    display: flex;
  }

  /* Animatie icon hamburger (X cand e activ) */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* PROCESS SECTION */
  .process-container {
    flex-direction: column;   /* pașii unul sub altul */
    align-items: center;
  }

  .process-step {
    width: 100%;              /* ocupă tot spațiul disponibil */
    margin-bottom: 20px;      /* spațiu între pași */
  }

  .process-step h3 {
    font-size: 1.3rem;        /* scalează titlurile */
  }

  .process-step p {
    font-size: 1rem;          /* scalează paragrafele */
  }
}
