@charset "utf-8";
/* CSS Document */
@charset "utf-8";

/* ================= RESET ================= */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}
body{
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: #0f172a;
  color: #e5e7eb;
}
img{
  max-width: 100%;
  display: block;
}
a{
  text-decoration: none;
  color: inherit;
}
ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,h2,h3,p{
  margin: 0;
}

html, body{
  overflow-x: hidden;
}
/* ================= VARIABILE ================= */
:root{
  --bg: #0f172a;
  --bg-soft: #111827;
  --card: #1e293b;
  --text: #e5e7eb;
  --muted: #cbd5e1;
  --line: rgba(255,255,255,0.08);
  --brand: #22c55e;
  --brand-dark: #16a34a;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* ================= UTILITARE ================= */
.container{
  width: min(1120px, 92%);
  margin: 0 auto;
}
.section{
  padding: 64px 0;
}
.section-heading{
  text-align: center;
  margin-bottom: 32px;
}
.section-heading h2{
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--white);
}
.section-heading p{
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.logo{
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.logo span{
  color: var(--brand);
}
.nav-toggle{
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
}
.site-nav{
  display: none;
	 text-align: center;
}
.site-nav ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-nav a{
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a.active{
  color: var(--brand);
}

.site-nav.is-open{
  display: block;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #0f172a;
  padding: 20px 4%;
  border-bottom: 1px solid var(--line);
}

/* ================= HERO ================= */
.hero{
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
}
.hero-content{
  display: grid;
  gap: 32px;
  align-items: center;
}
.eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
}
.hero-text h1{
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.hero-text p{
  color: var(--muted);
  max-width: 620px;
}
.hero-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.hero-image img{
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* ================= BUTOANE ================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary{
  background: var(--brand);
  color: #052e16;
}
.btn-primary:hover{
  background: var(--brand-dark);
  color: var(--white);
}
.btn-secondary{
  background: transparent;
  color: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover{
  border-color: var(--brand);
  color: var(--brand);
}

/* ================= CARDURI ================= */
.cards{
  display: grid;
  gap: 20px;
}
.card,
.benefit-box,
.cta-box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover,
.benefit-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  border-color: var(--brand);
}
.card h3,
.benefit-box h3{
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}
.card p,
.benefit-box p{
  color: var(--muted);
}
.card-image,
.benefit-image{
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 16px;
}
.card-image img,
.benefit-image img{
  width: 100%;
  transition: transform .4s ease;
}
.card:hover .card-image img,
.benefit-image:hover .benefit-image img{
  transform: scale(1.08);
}


.benefits-grid{
  display: grid;
  gap: 20px;
}
.testimonial-card h3{
  margin-top: 16px;
  color: var(--brand);
  font-size: 1rem;
}

/* ================= CTA ================= */
.cta-box{
  text-align: center;
}
.cta-box h2{
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--white);
}
.cta-box p{
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 700px;
  margin-inline: auto;
}

/* ================= FOOTER ================= */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 24px 0;
  background: #0b1120;
}
.footer-wrap{
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.footer-wrap p{
  color: var(--muted);
}
.footer-wrap ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.footer-wrap a{
  color: var(--muted);
}
.footer-wrap a:hover{
  color: var(--brand);
}

/* =================Inceput-servicii.html ================= */
.page-hero{
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  text-align: center;
}
.page-hero-content{
  max-width: 820px;
}
.page-hero h1{
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.page-hero p:last-child{
  color: var(--muted);
}
/* =================servicii.html-SERVICE LIST ================= */
.service-grid{
  display: grid;
  gap: 24px;
}
.service-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border-color: var(--brand);
}
.service-image{
  overflow: hidden;
}
.service-image img{
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .4s ease;
}
.service-card:hover .service-image img{
  transform: scale(1.08);
}
.service-content{
  padding: 24px;
}
.service-content h3{
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--white);
}
.service-content p{
  color: var(--muted);
  margin-bottom: 18px;
}
.service-features{
  display: grid;
  gap: 10px;
}
.service-features li{
  position: relative;
  padding-left: 22px;
  color: var(--text);
}
.service-features li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}
/* =================servicii.html-PRICING ================= */
.pricing-card{
  text-align: center;
}
.price{
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  margin: 10px 0 12px;
}
.featured-price{
  border-color: var(--brand);
}

/* ================= despre.html ================= */
.about-grid{
  display: grid;
  gap: 28px;
  align-items: center;
}
.about-image img{
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.about-text h2{
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.about-text p{
  color: var(--muted);
  margin-bottom: 16px;
}
.about-text p:last-child{
  margin-bottom: 0;
}
/* ================= despre.htmlEXPERIENCE ================= */
.experience-grid{
  display: grid;
  gap: 20px;
}

.experience-box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.experience-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border-color: var(--brand);
}
.experience-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 16px;
}
.experience-box h3{
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}
.experience-box p{
  color: var(--muted);
}


/* ================= despre.html-QUOTE ================= */
.quote-box{
  background: linear-gradient(135deg, rgba(34,197,94,0.14), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.quote-box p{
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--white);
  max-width: 850px;
  margin: 0 auto;
}

/* ================= CONTACT ================= */
.contact-grid{
  display: grid;
  gap: 28px;
}
.contact-info h2{
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--white);
}
.contact-info > p{
  color: var(--muted);
  margin-bottom: 24px;
}
.contact-cards{
  display: grid;
  gap: 18px;
}
.contact-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border-color: var(--brand);
}
.contact-card h3{
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--white);
}
.contact-card p,
.contact-card a{
  color: var(--muted);
}
.contact-card a:hover{
  color: var(--brand);
}
.contact-form-wrap{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.contact-form{
  display: grid;
  gap: 18px;
}
.form-group{
  display: grid;
  gap: 8px;
}
.form-group label{
  font-weight: 600;
  color: var(--white);
}
.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #0f172a;
  color: var(--white);
  font: inherit;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.form-group textarea{
  resize: vertical;
  min-height: 150px;
}
.form-note{
  margin-top: 16px;
  color: var(--muted);
}
.honey-field{
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
















/* ================= TABLETA ================= */
@media (min-width: 768px){
  .nav-toggle{
    display: none;
  }
.site-nav{
    display: block;
    position: static;
    width: auto;
    background: transparent;
    padding: 0;
    border: 0;
  }
.site-nav ul{
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }
 .hero-content{
    grid-template-columns: 1.1fr 0.9fr;
  }
.hero-text h1{
    font-size: 3rem;
  }
 .hero-actions{
    flex-direction: row;
    flex-wrap: wrap;
  }
.cards{
    grid-template-columns: repeat(2, 1fr);
  }
 .benefits-grid{
    grid-template-columns: repeat(2, 1fr);
  }
 .footer-wrap{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
	
	
	/* ================= servicii.html================= */
.page-hero h1{
    font-size: 3rem;
  }
.service-card{
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: stretch;
  }
 .service-image img{
    height: 100%;
    object-fit: cover;
  }
	/* ================= despre.html ================= */
	.about-text h2{
    font-size: 2.3rem;
  }
.experience-grid{
    grid-template-columns: repeat(2, 1fr);
  }
 .contact-cards{
    grid-template-columns: repeat(2, 1fr);
  }
	
	
	
}









/* ================= DESKTOP ================= */
@media (min-width: 1024px){
  .hero{
    padding: 70px 0 90px;
  }
.hero-text h1{
    font-size: 3.5rem;
  }
 .cards{
    grid-template-columns: repeat(3, 1fr);
  }
.section-heading h2{
    font-size: 2.4rem;
  }
	
/* ================= servicii.html ================= */
.page-hero{
    padding: 72px 0 56px;
  }
.page-hero h1{
    font-size: 3.5rem;
  }
.service-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
 .service-card{
    display: block;
  }
.service-image img{
    height: 220px;
    object-fit: cover;
  }
/* ================= despre.html ================= */	
.about-grid{
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
  }
.about-image img{
  width:100%;
  height:auto;
  border-radius:22px;
  box-shadow:var(--shadow);
}
 .quote-box{
    padding: 44px 36px;
  }
	.quote-box p{
    font-size: 1.35rem;
  }
.experience-grid{
    grid-template-columns: repeat(3, 1fr);  
  }
	.experience-box:last-child{
    grid-column:2;
  }
.contact-grid{
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: start;
  }	
 .contact-form-wrap{
    padding: 30px;
  }
	
	
}









@media (min-width: 1280px){
.benefits-grid{
    grid-template-columns: repeat(4, 1fr);
  }


	
}





.success-message,
.error-message{
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}
.success-message{
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.35);
  color: #86efac;
}
.error-message{
  background: rgba(239,68,68,0.14);
  border: 1px solid rgba(239,68,68,0.35);
  color: #fca5a5;
}















































































