
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY & LAYOUT */
body {
  font-family: Arial, sans-serif;
  display: flex;
  background-color: #222; /* Fundal general */
  color: #fff;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

nav .logo {
  text-align: center;
  padding: 30px 0;
  border-bottom: 1px solid #222;
}

nav .logo img {
  max-width: 140px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

nav ul li {
  border-bottom: 1px solid #222;
}

nav ul li a {
  display: block;
  padding: 25px 25px 15px 25px;
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  text-transform: uppercase;
  transition: background 0.3s;
  font-weight: 700;
}

nav ul li a:hover {
  background: #111;
}

nav ul li a.active {
  background: #222;
  color: #fff;
}


/* === CONȚINUT PAGINĂ === */

.content {
  margin-left: 260px;

  width: calc(100% - 260px);
}

section {
  padding: 60px 20px;
  background: #222; /* Fundal uniform */
}

section h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 40px;
  color: #fff;
}

.subtitle {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
  margin: 60px 40px 0 40px
}

.hero h1 {
  text-transform: uppercase;
  font-size: 2.5rem;
}

.highlight {
  background: #126232;
  padding: 4px 10px;
  border-radius: 6px;
}

/* GRID CARDS GENERAL */
.cards,
.problem-cards,
.features,
.testimonial-cards,
.video-cards,
.results {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card,
.problem-card,
.feature-card,
.testimonial,
.video-card,
.result-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #000;
}

/* BENEFICII */
.card {
  width: 260px;
  text-align: center;
  line-height: 1.8;
  border-left: 4px solid #3498db;
}

.card h3 {
  font-size: 2rem;
  color: #126232;
}

.probleme-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.probleme-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.probleme-section .subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.problem-card {
  background: #22222222;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.problem-card:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #3498db;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #222;
}

.problem-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.solution-card {
  background: #fff;
  color: #222;
  text-align: center;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #3498db;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.solution-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #555;
}

/* DEMO FORM */

.demo-section {
  background: #222; /* fundal dark */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-container {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 450px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.demo-container h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}

.demo-container .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* FORM */

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: #126232;
  box-shadow: 0 0 6px rgba(18, 98, 50, 0.3);
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* GREEN BUTTON */

.btn-green {
  margin-top:18px;
  background: #126232;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.btn-green:hover {
  background: #0f4d27;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .demo-container {
    padding: 25px 20px;
  }
  .demo-container h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    width: 200px;
  }
  .content {
    margin-left: 200px;
  }
  .site-footer {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 600px) {
  nav {
    display: none;
  }
  .content {
    margin-left: 0;
    width: 100%;
  }
}


/* === FOOTER DESIGN ==== */

.site-footer {
  background: #000;
  color: #ccc;
  padding: 50px 20px 20px;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-col a {
  color: #ccc; /* sau altă culoare dorită */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #3498db; /* sau altă culoare pentru hover */
  text-decoration: none; /* păstrează fără subliniere */
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
}

.footer-col p {
  margin: 6px 0;
  color: #bbb;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-heading {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
  font-weight: bold; /* păstrează grosimea din h4 */
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Linie separatoare */
.footer-divider {
  border: 0;
  border-top: 1px solid #222;
  margin: 20px 0;
}

/* Zona sub linie */
.footer-bottom {
  text-align: center;
}

.footer-social {
  margin-bottom: 15px;
}

.footer-social a {
  color: #ccc;
  margin: 0 8px;
  font-size: 1.4rem;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #3498db;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  margin: 0 8px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #888;
}

/* SCROLL */
html {
  scroll-behavior: smooth;
}
.client-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.client-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

/* CLIENT LIST */

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.client-list span {
  background: #f4f4f4;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
  transition: background 0.3s ease;
}

.client-list span:hover {
  background: #3498db;
  color: #fff;
}

/* CARD */
.case-study {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.case-study h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.case-study p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  background: #126232;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
  margin: 0 0 20px 0;
}

.download-btn:hover {
  background: #0f4d27;
  color: #fff;
}

/* RESULTS */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.result-card {
  background: #fff;
  color: #126232;
  text-align: center;
  border-radius: 10px;
  padding: 15px 10px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.result-card:hover {
  transform: scale(1.05);
}

.result-card h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.result-card p {
  font-size: 0.9rem;
  color: #333;
}
.testimonials {
  background: #222222;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card .quote {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card .quote::before {
  content: "“";
  font-size: 3rem;
  color: #3498db;
  position: absolute;
  left: -10px;
  top: -10px;
}

.author strong {
  display: block;
  font-size: 1rem;
  color: #222;
  margin-bottom: 4px;
}

.author span {
  font-size: 0.9rem;
  color: #666;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.footer-social .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #126232;
  font-size: 20px;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social .icon:hover {
  background: #126232;
  color: #fff;
  transform: scale(1.1);
}
.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}
.video-container {
  position: relative;
  height: 65vh;
  width: 100%;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  display: block;
}

/* OVERLAY FOR CONTENT */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.overlay img {
  width: 220px;
  margin-bottom: 20px;
}

.overlay h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

/* SCROLL BUTTON CENTERED */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 55px;
  border: 3px solid #fff;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.scroll-down span {
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.client-list img {
  height: 80px; /* Ajustează după preferințe */
  max-width: 150px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-list img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
