/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; background:#111; color:#fff; line-height:1.6; }

/* HEADER */
header {
  background:#000;
  padding:10px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:100;
}
header .logo img { height:50px; width:auto; }
nav ul { list-style:none; display:flex; gap:18px; }
nav a { color:#fff; text-decoration:none; font-size:0.95rem; }
nav a:hover { color:#FFD700; }

/* HERO (default) */
.hero {
  position:relative;
  min-height:320px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
}
.hero::before {
  content:"";
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background:rgba(0,0,0,0.55);
}
.hero-content {
  position:relative;
  z-index:1;
  max-width:800px;
  padding:20px;
  background:rgba(0,0,0,0.5);
  border-radius:10px;
}
.hero h1 {
  font-size:2rem;
  color:#FFD700;
  margin-bottom:12px;
}

/* HERO varianti */
.hero.home { background:url("images/img01.jpg") center/cover no-repeat; min-height:100vh; }
.hero.despre { background:url("images/img02.jpg") center/cover no-repeat; }
.hero.contact { background:url("images/img03.avif") center/cover no-repeat; }
.hero.privacy { background:url("images/img04.avif") center/cover no-repeat; }

/* --- Home texts --- */
.hero-text-left { text-align:left; margin-bottom:25px; }
.hero-content .btn { margin-top:20px; display:inline-block; }

/* BUTTON */
.btn {
  background:#FFD700;
  color:#000;
  padding:12px 25px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  transition:background .3s;
}
.btn:hover { background:#e6c200; }

/* SECTIONS */
section { padding:50px 20px; max-width:1100px; margin:auto; }
h2 { text-align:center; color:#FFD700; margin-bottom:20px; }

.mission, .steps, .offers {
  background:#1b1b1b;
  padding:20px;
  border-radius:8px;
  margin-bottom:30px;
}

.steps-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}
.step {
  background:#222;
  padding:20px;
  border-radius:8px;
  text-align:center;
}
.step h3 { color:#FFD700; margin-bottom:8px; }

.offers ul { list-style:none; padding:0; }
.offers li {
  margin:8px 0;
  padding:10px;
  background:#222;
  border-radius:6px;
}

/* CTA */
.cta {
  text-align:center;
  padding:40px 20px;
  background:#000;
}
.cta .btn { margin-top:10px; }

/* FORM */
.form-container {
  max-width:800px;
  margin:100px auto 50px;
  background:#111;
  padding:30px;
  border-radius:10px;
  box-shadow:0 0 10px rgba(255,215,0,0.2);
}
.form-container h2 { text-align:center; margin-bottom:20px; color:#FFD700; }
form { display:flex; flex-direction:column; gap:15px; }
label { font-weight:bold; color:#FFD700; margin-bottom:5px; }
input, textarea, select {
  width:100%; padding:12px;
  border:1px solid #444; border-radius:5px;
  background:#222; color:#fff; font-size:1rem;
}
textarea { resize:vertical; min-height:120px; }
input[type="file"] { background:none; border:none; padding:5px; color:#fff; }
.checkbox-group { display:flex; flex-wrap:wrap; gap:15px; margin-top:5px; }
.checkbox-group label { font-weight:normal; color:#fff; }
button[type="submit"] {
  padding:12px; background:#FFD700; border:none; border-radius:5px;
  font-weight:bold; cursor:pointer; transition:background .3s; margin-top:15px;
}
button[type="submit"]:hover { background:#e6c200; }

/* FOOTER */
footer {
  background:#111;
  padding:15px;
  text-align:center;
  color:#888;
  font-size:0.9rem;
  border-top:1px solid #333;
}

/* MOBILE NAV */
@media (max-width:768px) {
  nav ul { 
    display:none; flex-direction:column;
    background:#000; position:absolute;
    top:65px; right:20px; width:200px;
    padding:15px; border-radius:8px;
  }
  nav ul.active { display:flex; }
  .menu-toggle { display:block; cursor:pointer; font-size:1.6rem; color:#FFD700; }
}
@media (min-width:769px) {
  .menu-toggle { display:none; }
}

/* Hero specifica per pagina aplica */
.hero.aplica {
  position: relative;
  height: 70vh;
  background: url('images/img03.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero.aplica .hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.hero.aplica h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero.aplica p {
  font-size: 1.2rem;
}


.hero.contact {
  position: relative;
  height: 50vh;
  background: url('images/img04.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero.contact .hero-content {
  background: rgba(0, 0, 0, 0.55);
  padding: 30px;
  border-radius: 10px;
}

.contact-section {
  padding: 50px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.btn-whatsapp {
  display: inline-block;
  padding: 15px 30px;
  background: #25D366;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

/* FAQ page */
.hero.faq {
  position: relative;
  height: 50vh;
  background: url('images/img04.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero.faq .hero-content {
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 10px;
}

.faq-section {
  padding: 50px 20px;
  max-width: 800px;
  margin: auto;
}

.faq-section h2 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 1.6rem;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #333;
  padding: 15px 0;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFD700;
}

.faq-question:hover { color: #e6c200; }

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #ddd;
}

.faq-question span {
  transition: transform 0.3s;
}

.faq-question.active span {
  transform: rotate(90deg);
}

/* Privacy page */
.hero.privacy {
  position: relative;
  height: 40vh;
  background: url('images/img04.avif') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero.privacy .hero-content {
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 10px;
}

.privacy-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.privacy-section h2 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.privacy-section p {
  margin-bottom: 15px;
}

/* Thank you page */
.hero.thankyou {
  background: url('images/img02.jpg') no-repeat center center/cover;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero.thankyou::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero.thankyou .hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.55);
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
}

.hero.thankyou h1 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 16px;
}

