@charset "utf-8";
/* CSS Document */
:root{
  --dark:#0f172a;
  --primary:#123c69;
  --accent:#16a34a;
  --light:#f8fafc;
  --muted:#64748b;
  --white:#ffffff;
  --border:#e2e8f0;
  --shadow:0 18px 40px rgba(15,23,42,0.12);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  line-height:1.6;
  color:var(--dark);
  background:var(--white);
}

body.menu-open{
  overflow:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}
.container{
  width:min(1200px, calc(100% - 32px));
  margin-inline:auto;
}
.section-padding{
  padding:72px 0;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.96);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(10px);
}
.header-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
}
.logo-mark{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:var(--white);
  font-weight:800;
}
.logo-text{
  font-size:1.05rem;
  color:var(--dark);
}


/* MENU MOBILE */
.hamburger{
  width:44px;
  height:44px;
  border:0;
  background:var(--primary);
  border-radius:12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
}
.hamburger span{
  width:22px;
  height:2px;
  background:var(--white);
  border-radius:10px;
}
.site-nav{
  position:fixed;
  inset:0;
  z-index:999;
  background:linear-gradient(135deg, #0f172a, #123c69);
  transform:translateY(-100%);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:all .35s ease;

  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:120px;
}

.site-nav.is-open{
  transform:translateY(0);
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.close-btn{
  display:none;
  position:absolute;
  top:22px;
  right:22px;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:50%;
  background:transparent;
  color:var(--white);
  font-size:2rem;
  cursor:pointer;
}
.nav-menu{
  display:flex;
  flex-direction:column;
  gap:26px;
  text-align:center;
  padding:120px 20px 40px;
	 width:100%;
  

  background:rgba(15,23,42,0.92);
  backdrop-filter:blur(12px);
  box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.nav-menu a{
  color:var(--white);
	 position:relative;
	 display:block;
  width:100%;
  padding:14px;
  font-size:1.4rem;
  font-weight:700;
  padding:10px 20px;
}
.nav-menu a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:var(--accent);
  transform:translateX(-50%);
  transition:width .25s ease;
}

.nav-menu a:hover::after{
  width:60%;
}
.site-nav.is-open .close-btn{
  display:block;
}

/* HERO */
.hero{
  min-height:620px;
  display:flex;
  align-items:center;
  color:var(--white);
  background:
    linear-gradient(rgba(15,23,42,0.82), rgba(15,23,42,0.82)),
    url("../images/hero.jpg") center/cover no-repeat;
}
.hero-content{
  max-width:900px;
}
.hero-subtitle,
.section-subtitle{
  display:inline-block;
  margin-bottom:14px;
  color:var(--accent);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.85rem;
}
.hero h1{
  font-size:clamp(2.2rem, 7vw, 4.5rem);
  line-height:1.08;
  margin-bottom:22px;
}
.hero p{
  max-width:600px;
  font-size:1.1rem;
  color:#e2e8f0;
  margin-bottom:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  background:var(--accent);
  color:var(--white);
  font-weight:700;
  box-shadow:0 12px 28px rgba(22,163,74,0.25);
  transition:.25s ease;
}
.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(22,163,74,0.35);
}

.btn-light{
  background:var(--white);
  color:var(--primary);
}

/* SECTIONS */
.section-title{
  max-width:760px;
  font-size:clamp(1.8rem, 4vw, 2.7rem);
  line-height:1.15;
  margin-bottom:36px;
}
.services-preview{
  background:var(--light);
}
.cards-grid{
  display:grid;
  gap:24px;
}
.card{
  background:var(--white);
  padding:30px;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:0 10px 30px rgba(15,23,42,0.06);
  transition:.25s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}
.card-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#dcfce7;
  font-size:1.7rem;
  margin-bottom:18px;
  transition:.25s ease;
}

.card:hover .card-icon{
  transform:scale(1.08);
}
.card h3{
  font-size:1.25rem;
  margin-bottom:12px;
}
.card p,
.about-content p,
.about-card p{
  color:var(--muted);
}

/* ABOUT */
.about-grid{
  display:grid;
  gap:30px;
}
.about-content .section-title{
  margin-bottom:20px;
}
.check-list{
  margin-top:22px;
  display:grid;
  gap:12px;
}
.check-list li{
  position:relative;
  padding-left:30px;
  font-weight:700;
}

.check-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
}
.about-card{
  background:linear-gradient(135deg, var(--primary), #0f172a);
  color:var(--white);
  padding:34px;
  border-radius:28px;
  box-shadow:var(--shadow);
}
.about-card h3{
  font-size:1.6rem;
  margin-bottom:14px;
}
.about-card p{
  color:#dbeafe;
}

/* CTA */
.cta{
  padding:70px 0;
  background:linear-gradient(135deg, var(--primary), var(--dark));
  color:var(--white);
  text-align:center;
}
.cta h2{
  font-size:clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom:12px;
}
.cta p{
  color:#dbeafe;
  margin-bottom:26px;
}
/* FOOTER */
.site-footer{
  padding:26px 0;
  background:var(--dark);
  color:#cbd5e1;
  text-align:center;
}

/* ---servicii.html---PAGE HERO */
.page-hero{
  min-height:620px;
  display:flex;
  align-items:center;
  color:var(--white);
  background:
    linear-gradient(rgba(15,23,42,0.82), rgba(15,23,42,0.82)),
    url("../images/page-hero.jpg") center/cover no-repeat;
  color:var(--white);
  text-align:center;
}
.page-hero h1{
  font-size:clamp(2.2rem, 6vw, 4rem);
  line-height:1.1;
  margin-bottom:16px;
}

.page-hero p{
  max-width:680px;
  margin:0 auto;
  color:#e2e8f0;
  font-size:1.1rem;
}

/* SERVICES PAGE */
.services-list{
  display:grid;
  gap:24px;
}
.service-item{
  padding:28px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:0 10px 30px rgba(15,23,42,0.06);
  transition:.25s ease;
}

.service-item:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.service-item h2{
  font-size:1.35rem;
  margin-bottom:12px;
  color:var(--primary);
}
.service-item p{
  color:var(--muted);
}

/*---servicii.html---*/
.process{
  background:var(--light);
}
.process-grid{
  display:grid;
  gap:24px;
}

.process-card{
  background:var(--white);
  padding:28px;
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:0 10px 30px rgba(15,23,42,0.06);
}
.process-card span{
  display:inline-block;
  margin-bottom:16px;
  color:var(--accent);
  font-weight:800;
  font-size:1.4rem;
}
.process-card h3{
  margin-bottom:10px;
  color:var(--primary);
}
.process-card p{
  color:var(--muted);
}

/* ---despre.html---PAGE HERO */
.page-hero-despre{
  min-height:620px;
  display:flex;
  align-items:center;
  color:var(--white);
  background:
    linear-gradient(rgba(15,23,42,0.82), rgba(15,23,42,0.82)),
    url("../images/page-hero-despre.jpg") center/cover no-repeat;
  color:var(--white);
  text-align:center;
}
.page-hero-despre h1{
  font-size:clamp(2.2rem, 6vw, 4rem);
  line-height:1.1;
  margin-bottom:16px;
}

.page-hero-despre p{
  max-width:680px;
  margin:0 auto;
  color:#e2e8f0;
  font-size:1.1rem;
}
.about-image img{
  width:100%;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.why-us{
  background:var(--light);
}
.why-us-grid{
  display:grid;
  gap:30px;
}
.why-us-grid p{
  color:var(--muted);
  max-width:620px;
}
.why-us-list{
  display:grid;
  gap:16px;
}
.why-us-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 10px 25px rgba(15,23,42,0.06);
}
.why-us-item strong{
  color:var(--accent);
  font-size:1.3rem;
}
.why-us-item span{
  font-weight:700;
}


/* ---contact.php---PAGE HERO */
.page-hero-contact{
  min-height:620px;
  display:flex;
  align-items:center;
  color:var(--white);
  background:
    linear-gradient(rgba(15,23,42,0.82), rgba(15,23,42,0.82)),
    url("../images/page-hero-despre.jpg") center/cover no-repeat;
  color:var(--white);
  text-align:center;
}
.page-hero-contact h1{
  font-size:clamp(2.2rem, 6vw, 4rem);
  line-height:1.1;
  margin-bottom:16px;
}

.page-hero-contact p{
  max-width:680px;
  margin:0 auto;
  color:#e2e8f0;
  font-size:1.1rem;
}
/* CONTACT */
.contact-grid{
  display:grid;
  gap:30px;
}
.contact-info p{
  color:var(--muted);
  max-width:520px;
  margin-bottom:20px;
}
.contact-details{
  display:grid;
  gap:14px;
}
.contact-details strong{
  display:block;
  color:var(--primary);
}
.contact-details span{
  color:var(--muted);
}
/* FORM CARD */
.contact-card{
  background:var(--white);
  padding:28px;
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:0 12px 30px rgba(15,23,42,0.08);
}
/* FORM */
.contact-form{
  display:grid;
  gap:16px;
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.form-group label{
  font-weight:700;
  font-size:.9rem;
  color:var(--dark);
}
.form-group input,
.form-group textarea{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  font-size:.95rem;
  font-family:inherit;
  outline:none;
  transition:.2s ease;
}
.form-group input:focus,
.form-group textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(22,163,74,0.15);
}

















/* TABLET */
@media (min-width:768px){
  .cards-grid{
    grid-template-columns:repeat(2, 1fr);
  }
.about-grid{
    grid-template-columns:1.1fr .9fr;
    align-items:center;
  }
	
	/*---servicii.html---*/
	.services-list{
    grid-template-columns:repeat(2, 1fr);
  }
  .service-item{
    padding:34px;
  }
	.process-grid{
    grid-template-columns:repeat(2, 1fr);
  }
	
	
/*---despre.html---*/
.about-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:30px;
    align-items:center;
  }
.why-us-grid{
    grid-template-columns:1fr 1fr;
    align-items:center;
  }
	
	/*---contact.php---*/
	.contact-grid{
    grid-template-columns:1fr 1fr;
    align-items:start;
  }
.contact-card{
    padding:34px;
  }

	
	
	
	
	
}














/* DESKTOP MENU */
@media (min-width:1024px){
  .hamburger,
  .close-btn{
    display:none !important;
  } 
 .site-nav{
    position:static;
    inset:auto;
    z-index:auto;
    transform:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    background:transparent;
    display:block;
    padding:0;
  }
	 .nav-menu{
    display:flex;
    flex-direction:row;
    gap:30px;

    width:auto;
    padding:0;
    margin:0;

    background:transparent;
    box-shadow:none;
    border-radius:0;
  }
	.nav-menu a{
    color:var(--dark);
    font-size:1rem;
    padding-bottom:6px;
  }
	
.hero{
    min-height:680px;
  }
.cards-grid{
    grid-template-columns:repeat(3, 1fr);
  }
	
	
/*---servicii.html---*/	
.page-hero{
    padding:140px 0 110px;
  }
.services-list{
    grid-template-columns:repeat(4, 1fr);
  }
.process-grid{
    grid-template-columns:repeat(3, 1fr);
  }
	
	
	
	
}









/* SUCCESS MESSAGE */
.success-message{
  padding:14px;
  margin-bottom:16px;
  border-radius:12px;
  background:#dcfce7;
  color:#166534;
  border:1px solid #bbf7d0;
  font-weight:600;
}
.errormessage{
  background:#fee2e2;
  border:1px solid #fca5a5;
  color:#991b1b;
}

/* HONEYPOT */
.honeypot{
  position:absolute;
  left:-9999px;
}




















