@charset "utf-8";
/* CSS Document */
/* ================= RESET ================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  line-height:1.6;
  color:#0b1f3a;
  background:#fff;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

/* ================= VARIABILE ================= */
:root{
  --navy:#0b1f3a;
  --navy2:#0f2a4a;
  --gold:#f59e0b;      /* accent (urgent) */
  --bg:#ffffff;
  --muted:#6b7280;
  --line:#e5e7eb;
  --card:#ffffff;
  --alt:#f7f8fb;
}

/* ================= CONTAINER ================= */
.container{
  width:min(1200px, 100%);
  margin:0 auto;
  padding:0 16px;
}

/* ================= HEADER ================= */
.site-header{
  position: sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:66px;
}
.logo{
  font-weight:900;
  letter-spacing:.2px;
  font-size:20px;
  color:var(--navy);
}
.logo span{ color:var(--gold); }

.nav{ position:relative; }

/* Buton hamburger */
.hamburger{
  background:#fff;
  border:1px solid rgba(0,0,0,.18);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  font-size:18px;
  line-height:1;
}

/* Meniu overlay (mobil) */
.nav-menu{
  list-style:none;
  margin:0;
  padding:0;

  position: fixed;
  inset: 0;
  background: var(--navy);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 18px;

  transform: translateY(-100%);
  transition: transform .35s ease;
  z-index: 1050;
}

.nav-menu a{
  color:#fff;
  font-size:20px;
  font-weight:700;
  padding:10px 14px;
  border-radius:12px;
}
.nav-menu a.active{ color: var(--gold); }

.nav-cta{
  background: rgba(245,158,11,.16);
  border:1px solid rgba(245,158,11,.35);
}

/* Stare meniu deschis (va fi controlată din JS) */
.nav.is-open .nav-menu{ transform: translateY(0); }
.nav.is-open .hamburger{ display:none; }


/* CLOSE BUTTON */
.close-btn{
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1100;

  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
}

/* stare meniu deschis */
.nav.is-open .close-btn{
  display: block;
}

.nav.is-open .hamburger{
  display: none;
}




/* ================= HERO ================= */
.hero{
  background: linear-gradient(135deg, var(--navy), #061427);
  color:#fff;
  padding: 54px 0 46px;
}
.hero-inner{
  display:grid;
  gap: 16px;
}

.badge-urgent{
  display:inline-block;
  margin:0 0 12px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  letter-spacing:.2px;
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.35);
  color:#fff;
}

.hero h1{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.12;
}
.lead{
  margin:0 0 16px;
  color: rgba(255,255,255,.92);
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.btn{
  display:inline-block;
  background:#111;
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  transition: transform .2s ease, filter .2s ease;
}
.btn:hover{
  transform: translateY(-2px);
  filter: brightness(.95);
}

.btn-ghost{
  background:transparent;
  border:2px solid #fff;
}
.btn-small{
  padding:10px 14px;
  font-size:14px;
}

.hero-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
  color: rgba(255,255,255,.95);
  font-weight:700;
}

.hero-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 16px;
}
.hero-card h2{
  margin:0 0 8px;
  font-size:18px;
}
.hero-card p{
  margin:0 0 12px;
  color: rgba(255,255,255,.92);
}

.callout{
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 12px;
}
.callout p{
  margin:0;
  font-size:13px;
  color: rgba(255,255,255,.92);
}

/* ================= SECTIUNI ================= */
.section{ padding:46px 0; }
.section.alt{ 
	background: var(--alt);
}
.section h2{
  margin:0 0 16px;
  font-size:24px;
  color: var(--navy);
}
.section.cta{
  background:#111;
  color:#fff;
  text-align:center;
}
.section.cta h2{ color:#fff; }
.section.cta p{ color: rgba(255,255,255,.9); }

.center{ text-align:center; margin-top: 14px; }

/* ================= CARDS ================= */
.cards{
  display:grid;
  gap: 14px;
}

.card{
  position:relative;
  background: var(--card);
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
	
	transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
}

.card h3{
  margin:0 0 8px;
  color: var(--navy);
  font-size:18px;
}
.card p{
  margin:0;
  color:#374151;
}

/* Badge status (Urgent / Programare) */
.status{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
  letter-spacing:.2px;
}

.status.urgent{
  background: rgba(245,158,11,.18);
  border:1px solid rgba(245,158,11,.35);
  color:#7a4b00;
}

.status.programare{
  background: rgba(59,130,246,.14);
  border:1px solid rgba(59,130,246,.30);
  color:#0b2a64;
}

/* ================= FOOTER ================= */
.site-footer{
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 18px 0;
  background: #fff;
}

.footer-inner{
  display: flex;
  flex-direction: column;   /* IMPORTANT */
  gap: 10px;
  align-items: center;      /* centrat pe mobil */
  text-align: center;
}

.site-footer a{
  position: relative;
}

.site-footer a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width .25s ease;
}

.site-footer a:hover::after{
  width: 100%;
}







/* STEPS - fără numerotarea implicită a lui ol */
.steps{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}


.steps li{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: #fff;
}
.steps li span{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}

.section-title{
  text-align: center;
}
.steps{
  text-align: left; /* textul rămâne lizibil */
}






.section-lead{
  margin: 0 auto 18px;
  max-width: 70ch;
  text-align: center;
  opacity: .9;
}

/* ===== SERVICII (polish) ===== */
.services-grid{
  margin-top: 18px;
}

.service-card{
  display: grid;
	 min-height: 260px;
  gap: 10px;
}

.service-top{
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(14,165,233,.12);
  font-size: 18px;
}

.service-card h3{
  margin: 0;
}

.service-list{
  margin: 0;
  padding-left: 18px;
  color: #333;
}

.service-list li{
  margin: 4px 0;
}

.service-note{
  margin: 4px 0 0;
	 margin-top: auto;
  font-size: 13px;
  opacity: .85;
}






/* ================= ABOUT PREVIEW ================= */
.about-preview{
  display:grid;
  gap: 18px;
}

.about-text p{
  margin: 0 0 12px;
  color: #374151;
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display:grid;
  gap: 10px;
}

.checklist li{
  display:flex;
  align-items:center;
  gap: 10px;
  color: #111827;
  font-weight: 600;
}

.checklist i{
  color: var(--gold);
}

.about-box{
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
}

.about-box h3{
  margin: 0 0 10px;
}

.about-box p{
  margin: 8px 0;
  color: rgba(255,255,255,0.92);
}

.about-box i{ color: var(--gold); margin-right: 8px; }

.small{ font-size: 13px; color: #ddd; }

/* ================= DESPRE (page) ================= */
.about-page{
  display: grid;
  gap: 18px;
}

.section-title.left{
  text-align: left;
}

.about-main p{
  color: #374151;
  margin: 0 0 12px;
}

.values{
  display: grid;
  gap: 14px;
  margin: 18px 0 26px;
}

.value{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.value i{
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 8px;
}

.value h3{
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--navy);
}

.value p{
  margin: 0;
  color: #374151;
  font-size: 14px;
}

.steps{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.steps li{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font-weight: 600;
}

.steps li span{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  flex: 0 0 auto;
}

.about-aside{
  display: grid;
  gap: 14px;
}

.aside-card{
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
}

.aside-card h3{
  margin: 0 0 10px;
}

.aside-card p{
  margin: 8px 0;
  color: rgba(255,255,255,0.92);
}

.aside-card i{
  color: var(--gold);
  margin-right: 8px;
}

.aside-note{
  background: #f7f8fb;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

.aside-note h4{
  margin: 0 0 8px;
  color: var(--navy);
}






/* ================= CONTACT (page) ================= */
.contact-page{
  display: grid;
  gap: 18px;
}

.contact-form{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.form-group{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-group label{
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

.form-msg{
  margin-top: 12px;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  display: none;
}

.form-msg.ok{
  display: block;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #1f7a3d;
}

.form-msg.err{
  display: block;
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.35);
  color: #a1261b;
}

.contact-aside{
  display: grid;
  gap: 14px;
}


















/* ================= DESKTOP ================= */
@media (min-width:768px){

  /* meniu normal */
  .hamburger{ display:none; }
  .nav-menu{
    position: static;
    inset: auto;
    transform:none;
    transition:none;
    background: transparent;

    display:flex;
    flex-direction:row;
    justify-content:flex-end;
    align-items:center;
    gap: 12px;
  }
  .nav-menu a{
    color: var(--navy);
    font-size:16px;
  }
  .nav-menu a.active{ color: var(--gold); }

  /* hero layout */
  .hero{ padding: 64px 0 56px; }
  .hero-inner{
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    align-items:start;
  }
  .hero h1{ font-size:44px; }

  .cards{
    grid-template-columns: repeat(3, 1fr);
  }
	
	
	
	.footer-inner{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
	
	
	
	
	
	.services-grid{ grid-template-columns: repeat(2, 1fr); }
	
	.steps{
    max-width: 820px;
    margin: 22px auto 0;
  }

  .steps li{
    justify-content: center;
    text-align: center;
  }
	
	
	
	.about-page{
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 26px;
  }

  .values{
    grid-template-columns: repeat(3, 1fr);
  }
	
	
	
	
	
	
	.contact-page{
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 26px;
  }
	
	
	
}












@media (min-width:1024px){
  .hero h1{ font-size:48px; }
	
	
	.services-grid{ grid-template-columns: repeat(3, 1fr); }
	
	
	
	
}





















