@charset "utf-8";
/* ========== RESET / BAZĂ ========== */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.6;
  background:#ffffff;
  color:#111827;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  margin:0;
  padding:0;
  list-style:none;
}

h1,h2,h3,p{
  margin:0;
}

html, body{
  overflow-x:hidden;
}

/* ========== VARIABILE ========== */
:root{
  --brand:#facc15;
  --brand-dark:#eab308;
  --dark:#111827;
  --dark-2:#1f2937;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --bg:#f9fafb;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ========== UTILITARE ========== */
.container{
  width:min(1200px, calc(100% - 32px));
  margin-inline:auto;
}
.section{
  padding:56px 0;
}
.section-intro{
  text-align:center;
  margin-bottom:32px;
}
.section-intro h2{
  font-size:clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom:10px;
  color:var(--dark);
}
.section-intro p{
  color:var(--muted);
  max-width:700px;
  margin:0 auto;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 20px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:0.3s ease;
}
.btn-primary{
  background:var(--brand);
  color:var(--dark);
  border-color:var(--brand);
}

.btn-primary:hover{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
  transform:translateY(-2px);
}
.btn-secondary{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,0.35);
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-2px);
}



/* ========== HEADER ========== */
.site-header{
  position:sticky;
  top:0;
  z-index:2000;
  background:var(--dark);
  color:var(--white);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.logo{
  font-size:1.25rem;
  font-weight:800;
  letter-spacing:0.2px;
}

.logo span{
  color:var(--brand);
}
.hamburger,
.close-btn{
  background:none;
  border:none;
  color:var(--white);
  font-size:1.8rem;
  cursor:pointer;
}
.site-nav{
  position:fixed;
  inset:0;
  background:rgba(17,24,39,0.98);
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translateY(-100%);
  opacity:0;
  visibility:hidden;
  transition:0.3s ease;
}
.site-nav.is-open{
  transform:translateY(0);
  opacity:1;
  visibility:visible;
}
.close-btn{
  position:absolute;
  top:18px;
  right:18px;
}
.nav-list{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
}
.nav-list a{
  font-size:1.2rem;
  font-weight:700;
  transition:0.3s ease;
	 position: relative;
}
.nav-list a:hover{
  color:var(--brand);
}
.nav-list a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--brand);
  transition:width .25s ease;
}
/* activ pe toate device-urile */
.nav-list a[aria-current="page"]::after{
  width:100%;
}



/* HERO */

.hero{
  padding:80px 0 70px;
  min-height:500px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(15,23,42,0.45), rgba(15,23,42,0.45)),
    url("../images/hero.jpg") center/cover no-repeat;
  color:#fff;
}
.hero-content{
  max-width:900px;
  padding: 0;
}
.hero h1{
  font-size:clamp(2.4rem, 7vw, 4.8rem);
  line-height:1.05;
  margin-bottom:22px;
}
.hero p{
  font-size:1.08rem;
  color:#e5e7eb;
  margin-bottom:30px;
  max-width:650px;
}
.hero-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:14px 24px;
  border-radius:999px;
  font-weight:800;
  transition:0.3s ease;
}

.btn-primary{
  background:var(--gold);
  color:var(--dark);
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(201,162,39,0.35);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.45);
  color:var(--white);
}

.btn-secondary:hover{
  background:var(--white);
  color:var(--dark);
}

/* CARDS */

.cards-grid{
  display:grid;
  gap:24px;
}
.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:18px;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.3s ease;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
}
.card-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--gold-soft);
  font-size:1.7rem;
  margin-bottom:20px;
}
.card h3{
  color:var(--dark);
  margin-bottom:10px;
  font-size:1.25rem;
}
.card p{
  color:var(--muted);
}


/* ABOUT */

.about-preview{
  background:var(--light);
}
.about-grid{
  display:grid;
  gap:30px;
  align-items:center;
}
.about-content p{
  margin-bottom:16px;
  color:var(--muted);
}
.text-link{
  display:inline-block;
  margin-top:8px;
  color:var(--gold);
  font-weight:800;
}
.about-box{
  background:var(--dark);
  color:var(--white);
  border-radius:22px;
  padding:34px;
  box-shadow:var(--shadow);
}
.about-box h3{
  margin-bottom:18px;
  font-size:1.4rem;
}
.about-box li{
  position:relative;
  padding-left:28px;
  margin-bottom:14px;
  color:#e5e7eb;
}
.about-box li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
  font-weight:900;
}
.stats{
  background:var(--dark);
  color:var(--white);
}

.stats-grid{
  display:grid;
  gap:24px;
  text-align:center;
}

.stat-item{
  padding:28px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  background:rgba(255,255,255,0.04);
}

.stat-item strong{
  display:block;
  font-size:2.4rem;
  color:var(--gold);
  margin-bottom:6px;
}

.stat-item span{
  color:#e5e7eb;
}

/* CTA */

.cta{
  background:var(--light);
}
.cta-box{
  text-align:center;
  background:var(--white);
  border-radius:24px;
  padding:42px 24px;
  box-shadow:var(--shadow);
}
.cta-box h2{
  color:var(--dark);
  font-size:clamp(1.7rem, 4vw, 2.5rem);
  margin-bottom:14px;
}
.cta-box p{
  max-width:620px;
  margin:0 auto 26px;
  color:var(--muted);
}

/* FOOTER */

.site-footer{
  background:#0b1120;
  color:#d1d5db;
  padding:28px 0;
  text-align:center;
}
.footer-inner{
  display:grid;
  gap:8px;
  font-size:0.95rem;
}


/* -servicii.html---HERO */

.page-hero-servicii{
  padding:80px 0 70px;
  min-height:500px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(15,23,42,0.45), rgba(15,23,42,0.45)),
    url("../images/hero-servicii.jpg") top/cover no-repeat;
  color:#fff;
}
.page-hero-servicii-content{
  max-width:900px;
  padding: 0;
}
.page-hero-servicii h1{
  font-size:clamp(2.4rem, 7vw, 4.8rem);
  line-height:1.05;
  margin-bottom:22px;
}
.page-hero-servicii p{
  font-size:1.08rem;
  color:#e5e7eb;
  margin-bottom:30px;
  max-width:650px;
}


/*---despre.html---*/
.page-hero-despre{
  padding:80px 0 70px;
  min-height:500px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(15,23,42,0.45), rgba(15,23,42,0.45)),
    url("../images/hero-despre.jpg") center/cover no-repeat;
  color:#fff;
}
.page-hero-despre-content{
  max-width:900px;
  padding: 0;
}
.page-hero-despre h1{
  font-size:clamp(2.4rem, 7vw, 4.8rem);
  line-height:1.05;
  margin-bottom:22px;
}
.page-hero-despre p{
  font-size:1.08rem;
  color:#e5e7eb;
  margin-bottom:30px;
  max-width:650px;
}
.about-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/*---despre.html---*/
.page-hero-contact{
  padding:80px 0 70px;
  min-height:500px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(15,23,42,0.45), rgba(15,23,42,0.45)),
    url("../images/hero-contact.jpg") center/cover no-repeat;
  color:#fff;
}
.page-hero-contact-content{
  max-width:900px;
  padding: 0;
}
.page-hero-contact h1{
  font-size:clamp(2.4rem, 7vw, 4.8rem);
  line-height:1.05;
  margin-bottom:22px;
}
.page-hero-contact p{
  font-size:1.08rem;
  color:#e5e7eb;
  margin-bottom:30px;
  max-width:650px;
}
.contact-grid{
  display:grid;
  gap:32px;
  align-items:start;
}
.contact-info p{
  color:var(--muted);
  margin-bottom:22px;
}
.contact-list{
  display:grid;
  gap:12px;
}
.contact-list li{
  padding:14px 16px;
  background:var(--light);
  border-left:4px solid var(--gold);
  border-radius:12px;
}
.contact-form-box{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
}
.contact-form{
  display:grid;
  gap:16px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--brand);
  border-radius:12px;
  font:inherit;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--brand-dark);
}
.contact-form textarea{
  resize:vertical;
}
.success-message{
  margin-bottom:18px;
  padding:14px 16px;
  background:#dcfce7;
  color:#166534;
  border:1px solid #bbf7d0;
  border-radius:12px;
  font-weight:700;
}
.honeypot{
  position:absolute;
  left:-9999px;
}




















@media (min-width:768px){
.hero{
  padding:80px 0 70px;
  min-height:500px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(15,23,42,0.45), rgba(15,23,42,0.45)),
    url("../images/hero.jpg") center/cover no-repeat;
  color:#fff;
}
.hero-content{
  max-width:900px;
  padding: 0;
}
	.site-nav{
    position:static;
    inset:auto;
    background:transparent;
    transform:none;
    opacity:1;
    visibility:visible;
    display:block;
  }
 .nav-list{
    flex-direction:row;
    justify-content:flex-end;
    gap:28px;
  }
	.hamburger,
	.close-btn{
		display: none !important;
	}
	.nav-list a{
    font-size:1rem;
    position:relative;
  }
	.nav-list a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--brand);
    transition:0.3s ease;
  }
	 .nav-list a:hover::after{
    width:100%;
  }
  .hero-actions{
    flex-direction:row;
  }

  .cards-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .about-grid{
    grid-template-columns:1.1fr 0.9fr;
  }

  .stats-grid{
    grid-template-columns:repeat(2, 1fr);
  }
	
	
	.contact-grid{
    grid-template-columns:0.9fr 1.1fr;
  }
	
	
	
	
	
}












/* DESKTOP */

@media (min-width:1024px){
.hero{
  padding:80px 0 70px;
  min-height:500px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(15,23,42,0.45), rgba(15,23,42,0.45)),
    url("../images/hero.jpg") center/cover no-repeat;
  color:#fff;
}
.hero-content{
  max-width:900px;
  padding: 0;
}
  .hamburger,
  .close-btn{
    display:none;
  }

  .site-nav{
    position:static;
    inset:auto;
    transform:none;
    background:transparent;
    display:block;
  }

  .nav-menu{
    flex-direction:row;
    gap:32px;
  }

  .nav-menu a{
    font-size:0.98rem;
  }

  .hero{
    min-height:620px;
  }
	
	
	.cards-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .about-grid{
    grid-template-columns:1.1fr 0.9fr;
  }

  .stats-grid{
    grid-template-columns:repeat(3, 1fr);
  }
	
	
	
	
	
	
}




.honeypot {
  display: none;
}
.honeypot{
  position:absolute;
  left:-9999px;
}

.form-success{
  background:#dcfce7;
	 padding: 16px;
	 border-radius: 16px; 
  border:1px solid #86efac;
  color:#166534;
}

.form-error{
  background:#fee2e2;
	 padding: 16px;
	 border-radius: 16px; 
  border:1px solid #fca5a5;
  color:#991b1b;
}

.hidden-field{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}















