@charset "utf-8";
/* CSS Document */
:root {
  --primary: #2f8f83;
  --primary-dark: #236e65;
  --secondary: #f4f9f8;

  --text: #222;
  --text-light: #5f6b6a;

  --white: #ffffff;
  --border: #dbe8e5;

  --shadow:
    0 10px 30px rgba(0, 0, 0, 0.08);

  --radius: 20px;

  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.logo span {
  color: var(--primary);
}
.menu-toggle,
.close-btn {
  border: none;
  background: transparent;
  cursor: pointer;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  border-radius: 20px;
  background: var(--text);
  transition: var(--transition);
}
.site-nav {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(22, 42, 39, 0.96),
    rgba(22, 42, 39, 0.96));

  display: flex;
  justify-content: center;
  align-items: center;

  transform: translateY(-100%);
  transition: var(--transition);
}
.site-nav.is-open {
  transform: translateY(0);
}
.site-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
	position: relative;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: #8df0df;
}
.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;

  color: var(--white);
  font-size: 2.2rem;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
  }
.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
  }

/* HERO */
.hero {
  min-height: 650px;
  display: grid;
  align-items: center;

  color: var(--white);

  background:
    linear-gradient(rgba(20, 43, 40, 0.78),
    rgba(20, 43, 40, 0.65)),
    url("../images/hero.jpg") center/cover;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding-inline: 1.6rem;

  border-radius: 999px;
  font-weight: 700;

  transition: var(--transition);
}
.hero-content {
  padding-top: 100px;
}
.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero p {
  max-width: 650px;
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding-inline: 1.6rem;

  border-radius: 999px;
  font-weight: 700;

  transition: var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}
.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--text);
}
.btn-light {
  background: var(--white);
  color: var(--primary);
}
.btn-light:hover {
  transform: translateY(-3px);
}

/* SECTIONS */
.section {
  padding: 5rem 0;
}
.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

/* CARDS */
.cards-grid,
.features-grid,
.services-grid,
.why-grid,
.values-grid,
.contact-cards{
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
.card,
.feature,
.service-card,
.why-card,
.value-card,
.contact-card{
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);

  border: 1px solid var(--border);

  box-shadow: var(--shadow);

  transition: var(--transition);
}
.card:hover,
.feature:hover,
.service-card:hover,
.why-card:hover,
.value-card:hover,
.contact-card:hover{
  transform: translateY(-6px);
  border-color: var(--primary);
}
.card-icon,
.feature-icon,
.service-icon,
.why-icon,
.value-icon,
.contact-card span{
  font-size: 2.2rem;
  margin-bottom: 1rem;

  transition: var(--transition);
}
.card:hover .card-icon,
.feature:hover .feature-icon,
.service-card:hover .service-icon,
.why-card:hover .why-icon,
.value-card:hover .value-icon,
.contact-card:hover .contact-card span{
  transform: scale(1.08);
}
.card h3,
.feature h3,
.service-card h3,
.why-card h3,
.value-card h3,
.contact-card h3{
  margin-bottom: 0.8rem;
}

/* ABOUT */
.about-preview {
  background: var(--secondary);
}
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.about-image img,
.about-image-despre img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.bullets {
  margin: 1.5rem 0;
}
.bullets li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
}
.bullets li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;

  color: var(--primary);
  font-weight: 700;
}

/* CTA */

.cta {
  padding: 5rem 0;
  background:
    linear-gradient(rgba(32, 86, 79, 0.92),
    rgba(32, 86, 79, 0.92)),
    url("../images/cta.jpg") center/cover;

  color: var(--white);
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* FOOTER */
.site-footer {
  background: #142b28;
  color: rgba(255, 255, 255, 0.75);

  padding: 2rem 0;
  text-align: center;
}
.footer-inner {
  display: grid;
  gap: 0.5rem;
}


/* ---servicii.html---HERO */
.page-hero {
  min-height: 650px;
  display: grid;
  align-items: center;

  color: var(--white);

  background:
    linear-gradient(rgba(20, 43, 40, 0.78),
    rgba(20, 43, 40, 0.65)),
    url("../images/hero-servicii.jpg") center/cover;
}

.page-hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.page-hero p {
  max-width: 650px;
  margin-bottom: 1.5rem;
}

/* ---despre.html--.html---HERO */
.page-hero.about-hero {
  min-height: 650px;
  display: grid;
  align-items: center;

  color: var(--white);

  background:
    linear-gradient(rgba(20, 43, 40, 0.78),
    rgba(20, 43, 40, 0.65)),
    url("../images/hero-despre.jpg") center/cover;
}
.stats-section {
  padding-top: 0;
}
.stats-grid {
  display: grid;
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
}
.stat-card h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
}
.stat-card p {
  color: var(--text);
  font-weight: 300;
}
/* ---despre.html--.html---HERO */
.page-hero.contact-hero {
  min-height: 650px;
  display: grid;
  align-items: center;

  color: var(--white);

  background:
    linear-gradient(rgba(20, 43, 40, 0.78),
    rgba(20, 43, 40, 0.65)),
    url("../images/hero-contact.jpg") center/cover;
}
.contact-grid {
    display: grid;
    gap: 32px;
}
.contact-info .section-subtitle{
	color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.contact-info h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
}
.contact-info > p {
    margin-bottom: 24px;
    color: var(--text);
    line-height: 1.7;
}
.contact-form-wrap {
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}
.contact-form {
    display: grid;
    gap: 18px;
}
.form-group {
    display: grid;
    gap: 8px;
}
.form-group label {
    font-weight: 700;
    color: var(--dark);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font: inherit;
    color: var(--primary);
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(180, 112, 54, 0.16);
}
.form-group textarea {
    resize: vertical;
}















/* TABLET */
@media (min-width: 768px) {

  .hero h1,
	.page-hero h1,
	.page-hero.about-hero h1{
    font-size: 3.5rem;
    max-width: 800px;
  }
	.hero-actions {
    flex-direction: row;
  }
.cards-grid,
.features-grid,
.services-grid,
.why-grid,
.values-grid,
.stats-grid{
    grid-template-columns: repeat(2, 1fr);
  }
 .about-grid {
    grid-template-columns: 1fr 1fr;
  }
	
.contact-grid {
        grid-template-columns: 1fr 1.1fr;
        align-items: start;
    }
 .contact-form-wrap {
        padding: 32px;
    }
	
	
	
	
}
















/* DESKTOP */

@media (min-width: 1024px) {

  body {
    padding-top: 72px;
  }
.menu-toggle,
  .close-btn {
    display: none;
  }
 .site-nav {
    position: static;
    inset: auto;

    background: transparent;

    transform: none;
  }
 .site-nav ul {
    flex-direction: row;
    gap: 2rem;
  }
 .site-nav a {
    position: relative;
    color: var(--text);
    font-size: 1rem;
  }
 .site-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: var(--transition);
  }
 .site-nav a:hover::after,
  .site-nav a.active::after {
    width: 100%;
  }
 .cards-grid,
  .features-grid,
	.services-grid,
.why-grid,
	.values-grid,
.stats-grid{
    grid-template-columns: repeat(3, 1fr);
  }
	
	
	
	
}












@media (min-width: 1280px) {
.hero {
  min-height: 650px;
  display: grid;
  align-items: center;

  color: var(--white);

  background:
    linear-gradient(rgba(20, 43, 40, 0.78),
    rgba(20, 43, 40, 0.65)),
    url("../images/hero.jpg") top/cover;
}
	.page-hero.about-hero {
  min-height: 650px;
  display: grid;
  align-items: center;

  color: var(--white);

  background:
    linear-gradient(rgba(20, 43, 40, 0.78),
    rgba(20, 43, 40, 0.65)),
    url("../images/hero-despre.jpg") top/cover;
}
	.hero h1,
	.page-hero h1,
	.page-hero.about-hero h1{
    font-size: 3.5rem;
    max-width: 1000px;
  }
.cta {
  padding: 5rem 0;
  background:
    linear-gradient(rgba(32, 86, 79, 0.92),
    rgba(32, 86, 79, 0.92)),
    url("../images/cta.jpg") center/cover;

  color: var(--white);
  text-align: center;
}	
	.page-hero.contact-hero {
  min-height: 650px;
  display: grid;
  align-items: center;

  color: var(--white);

  background:
    linear-gradient(rgba(20, 43, 40, 0.78),
    rgba(20, 43, 40, 0.65)),
    url("../images/hero-contact.jpg") top/cover;
}
	
	
	
	
	
	

}






.honeypot {
    position: absolute;
    left: -9999px;
}

.form-message {
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 14px;
    font-weight: 700;
}

.form-message.success {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac;
}

.form-message.error {
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fecaca;
}














































































































































































