@charset "utf-8";
/* CSS Document */
/* ================= 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:#0f172a;
}

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;
}

button,
input,
textarea{
  font:inherit;
}

html,
body{
  overflow-x:hidden;
}

/* ================= VARIABILE ================= */
:root{
  --brand:#0ea5e9;
  --brand-dark:#0284c7;
  --accent:#0369a1;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --soft:#f0f9ff;
  --card:#ffffff;
  --shadow:0 10px 30px rgba(15,23,42,0.08);
  --shadow-hover:0 18px 40px rgba(15,23,42,0.14);
  --radius:20px;
}


/* ================= UTILITARE ================= */
.container{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
}
.section{
  padding:64px 0;
}
.section-subtitle{
  display:inline-block;
  margin-bottom:12px;
  font-size:0.9rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--brand);
}
.section-title{
  font-size:2rem;
  line-height:1.2;
  margin-bottom:16px;
}
.section-heading{
  text-align:center;
  margin-bottom:36px;
}

/* ================= HEADER ================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-wrap{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}
.logo{
  font-size:1.5rem;
  font-weight:700;
  color:var(--accent);
}
.nav-toggle{
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  font-size:1.2rem;
  transition:background .25s ease, border-color .25s ease;
}
.nav-toggle:hover{
  background:var(--soft);
  border-color:var(--brand);
}
.site-nav{
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%) translateY(-10px);
  width:min(100%, 92vw);
  background:rgba(255,255,255,0.98);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.site-nav.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.site-nav ul{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.site-nav a{
  font-weight:600;
  display:inline-block;
  padding:6px 2px;
  position:relative;
  transition:color .25s ease;
}
.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--brand);
  transition:width .25s ease;
}
.site-nav a:hover,
.site-nav a.active{
  color:var(--brand);
}
.site-nav a:hover::after,
.site-nav a.active::after{
  width:100%;
}

/* ================= BUTOANE ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover{
  transform:translateY(-2px);
}
.btn-primary{
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  color:#fff;
  box-shadow:0 12px 24px rgba(14,165,233,0.22);
}
.btn-primary:hover{
  box-shadow:0 18px 30px rgba(14,165,233,0.28);
}


/* ================= 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;
}
.hero-content h1{
  font-size:2.3rem;
  line-height:1.12;
  margin-bottom:18px;
	 max-width: 800px;
}
.hero-content p{
  color:#e2e8f0;
  font-size:1rem;
  max-width:620px;
  margin-bottom:24px;
}

/* ================= SERVICII ================= */
.services-grid{
  display:grid;
  gap:24px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
}
.service-icon,
.feature-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:60px;
  height:60px;
  border-radius:50%;
  background:var(--soft);
  margin-bottom:14px;
  font-size:30px;
}
.service-card h3{
  margin:0 0 10px;
  font-size:20px;
}
.service-card p{
  margin:0;
  color:var(--muted);
}

/* ================= FEATURES ================= */
.section-alt{
  background:var(--soft);
}
.features-grid{
  display:grid;
  gap:24px;
}
.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
}

.feature-card h3{
  margin:0 0 10px;
  font-size:20px;
}
.feature-card p{
  margin:0;
  color:var(--muted);
}

/* ================= TESTIMONIALE ================= */
.testimonials-grid{
  display:grid;
  gap:24px;
}
.testimonial-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  box-shadow:var(--shadow);
}
.testimonial-card p{
  color:var(--muted);
  margin-bottom:14px;
}
.testimonial-card h3{
  font-size:1rem;
  color:var(--accent);
}

/* ================= CTA ================= */
.cta-box{
  background:linear-gradient(135deg, #0f172a, #1e293b);
  color:#fff;
  padding:32px 24px;
  border-radius:18px;
  text-align:center;
}
.cta-box h2{
  margin:0 0 12px;
}
.cta-box p{
  max-width:700px;
  margin:0 auto 18px;
  color:#cbd5e1;
}


/* ================= servicii.html ================= */
.page-hero-servicii{
  padding:80px 0 70px;
  min-height:500px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(15,23,42,0.55), rgba(15,23,42,0.55)),
    url("../images/page-hero-servicii.jpg") center/cover no-repeat;
  color:#fff;
}
.page-hero-servicii-content{
  max-width:900px;
}
.page-hero-servicii-content h1{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.15;
  margin-bottom:16px;
	 max-width: 800px;
}
.page-hero-servicii-content p{
  max-width:680px;
  color:#e2e8f0;
}
/* ================= servicii.html ================= */
.service-detail-grid{
  display:grid;
  gap:24px;
}
.service-detail-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:transform .3s ease, box-shadow .3s ease;
}
.service-detail-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
}
.service-detail-card h3{
  margin:0 0 12px;
  font-size:1.25rem;
}
.service-detail-card p{
  color:var(--muted);
}
/* ================= servicii.html ================= */
.steps-grid{
  display:grid;
  gap:24px;
}
.step-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  text-align:center;
  box-shadow:var(--shadow);
}
.step-number{
  width:52px;
  height:52px;
  margin:0 auto 14px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--brand), var(--brand-dark));
  color:#fff;
  font-weight:700;
  font-size:1.1rem;
}
.step-card h3{
  margin:0 0 10px;
}
.step-card p{
  margin:0;
  color:var(--muted);
}


/* ================= 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.55), rgba(15,23,42,0.55)),
    url("../images/page-hero-despre.jpg") center/cover no-repeat;
  color:#fff;
}
.page-hero-despre-content{
  max-width:900px;
}
.page-hero-despre-content h1{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.15;
  margin-bottom:16px;
	 max-width: 800px;
}
.page-hero-despre-content p{
  max-width:680px;
  color:#e2e8f0;
}
.about-grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.about-text p{
  margin-bottom:16px;
  color:var(--muted);
}
.about-image img{
  width:100%;
  border-radius:20px;
  box-shadow:var(--shadow);
  min-height:360px;
  object-fit:cover;
}

/* ================= contact.html ================= */
.page-hero-contact{
  padding:80px 0 70px;
  min-height:500px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(15,23,42,0.55), rgba(15,23,42,0.55)),
    url("../images/page-hero-contact.jpg") center/cover no-repeat;
  color:#fff;
}
.page-hero-contact-content{
  max-width:900px;
}
.page-hero-contact-content h1{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.15;
  margin-bottom:16px;
	 max-width: 800px;
}
.page-hero-contact-content p{
  max-width:680px;
  color:#e2e8f0;
}
.section-messages{
  padding:24px 0 0;
}
.contact-grid{
  display:grid;
  gap:28px;
}
.contact-info p{
  color:var(--muted);
}
.contact-card{
  margin-top:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px 20px;
  box-shadow:var(--shadow);
}
.contact-card h3{
  margin:0 0 8px;
  font-size:1.1rem;
}
.contact-form-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}
.contact-form{
  display:grid;
  gap:18px;
}
.form-group{
  display:grid;
  gap:8px;
}
.form-group label{
  font-weight:700;
  color:var(--text);
}
.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #cbd5e1;
  border-radius:14px;
  background:#fff;
  color:var(--text);
  transition:border-color .25s ease, box-shadow .25s ease;
}
.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(14,165,233,0.10);
}
.form-success,
.form-error{
  margin:0;
  padding:14px 16px;
  border-radius:14px;
  font-weight:700;
}



















/* ================= FOOTER ================= */
.site-footer{
  padding:24px 0;
  background:#0f172a;
  color:rgba(255,255,255,0.84);
}
.footer-inner{
  text-align:center;
}
.footer-inner p{
  font-size:0.95rem;
}














/* ================= TABLET ================= */
@media (min-width:768px){
  .nav-toggle{
    display:none;
  }
.site-nav{
    position:static;
    transform:none;
    width:auto;
    background:transparent;
    border:0;
    box-shadow:none;
    padding:0;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
.site-nav ul{
    flex-direction:row;
    gap:24px;
  }
.section{
    padding:80px 0;
  }
.section-title{
    font-size:2.3rem;
  }
.hero{
    padding:90px 0 80px;
  }
.hero-content h1{
    font-size:3.2rem;
  }
.services-grid,
.features-grid,
.testimonials-grid{
  grid-template-columns:repeat(2,1fr);
}
	
/* ================= servicii.html ================= */	
.page-hero-servicii{
    padding:90px 0 80px;
  }
.page-hero-servicii-content h1{
    font-size:3.2rem;
  }
.service-detail-grid{
    grid-template-columns:repeat(2,1fr);
  }
.steps-grid{
    grid-template-columns:repeat(2,1fr);
 }
	
/* ================= despre.html ================= */		
.page-hero-despre{
    padding:90px 0 80px;
  }
.page-hero-despre-content h1{
    font-size:3.2rem;
  }
 .about-grid{
    grid-template-columns:1fr 1fr;
    gap:32px;
  }
	
/* ================= despre.html ================= */		
.page-hero-contact{
    padding:90px 0 80px;
  }
.page-hero-contact-content h1{
    font-size:3.2rem;
  }
 .contact-grid{
    grid-template-columns:1fr 1fr;
    align-items:start;
  }
	
	
	
	
}














/* ================= DESKTOP ================= */
@media (min-width:1024px){
  .container{
    width:min(1240px, calc(100% - 48px));
  }
.hero-content h1{
    font-size:3.7rem;
}
.services-grid,
.features-grid,
.testimonials-grid{
  grid-template-columns:repeat(3,1fr);
}
	
/* ================= servicii.html ================= */	
.page-hero-servicii-content h1{
    font-size:3.7rem;
}
.service-detail-grid{
    grid-template-columns:repeat(3,1fr);
  }
.steps-grid{
    grid-template-columns:repeat(3,1fr);
  }
	
/* ================= despre.html ================= */	
.page-hero-despre-content h1{
    font-size:3.7rem;
}
.about-grid{
    grid-template-columns:1.05fr 0.95fr;
    gap:40px;
  }
	
/* ================= contact.php ================= */	
.page-hero-contact-content h1{
    font-size:3.7rem;
}
.contact-grid{
    grid-template-columns:0.95fr 1.05fr;
    gap:36px;
  }
	
	
	
	
}














/* ================= DESKTOP ================= */
@media (min-width:1280px){
.services-grid{
  grid-template-columns:repeat(4,1fr);
}	

/* ================= servicii.html ================= */	
.service-detail-grid{
    grid-template-columns:repeat(4,1fr);
  }
	
	
}











.form-success{
  background:#dcfce7;
  border:1px solid #86efac;
  color:#166534;
}

.form-error{
  background:#fee2e2;
  border:1px solid #fca5a5;
  color:#991b1b;
}

.hp-field{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}




































































