    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

:root {
    
    --fundal1-: #F9F6F1; /*fundal principal pentru o atmosferă aerisită*/
    --fundal2: #EFEFEF; /* secțiuni alternative*/
   /*  --footer: #1C1C1C; pentru footer sau teme întunecate (opțional)*/

    --footer1: #1C2D49;
    --footer : #111827; /* pentru un footer elegant și modern*/
--fon_section: #F4F4F4;


    --text1: #2B2B2B ; /* un gri închis, ușor de citit pe fundal deschis*/
    --text2: #6E6E6E ; /* descrieri, texte mai puțin importante*/
    --text3: #DAA75F ; /*folosit subtil în titluri sau sublinieri*/



    --link-s: #8C6239; /*o nuanță pământie apropiată de culoarea logo-ului*/
    --link-h: #B88643; /* mai deschis, cu efect subtil*/
    --link-v: #7A5630; /* o variantă mai închisă*/




    --albastru-calm: #6B8CA4; /* pentru secțiuni sau badge-uri*/
    --verde-salvie: #A5BBA6; /* fundaluri blânde, relaxante*/
    --rosu-teracota: #B14E3A; /* atenționări, erori*/




    --logo: #DAA75F;



--butoane-fundal: #DAA75F; 
--b-text : #FFFFFF; 
--b-text-hover: #C9944E;

--linkuri: #8C6239;
--linkuri-hover: #B88643;

}



html {
  font-size: 16px; /* baza */
}


body {
      font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;              /* dimensiune de bază */
  line-height: 1.6; 
 font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
    background-color: var(--fundal1);
    color: var(--text1);
    transition: overflow 0.3s;
}


header {
    background-color: var(--fundal1);
    color: var(--text1);
    padding: 20px;
    text-align: center;
    position: relative;
}






/* Titluri responsive cu line-height și font-weight */
h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  font-weight: 600;
  color: #222222;
  margin-bottom: 0.5em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.35;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5em;
}

h4 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.4;
  font-weight: 500;
  color: #444444;
  margin-bottom: 0.5em;
}

h5, h6 {
  font-weight: 500;
  line-height: 1.4;
  color: #555555;
  margin-bottom: 0.4em;
  font-size: clamp(0.9rem, 1vw, 1.2rem);
}

/* Paragrafe */
p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1em;
  color: #444444;
}

/* Linkuri */
a {
  color: #DAA75F; /* culoarea ta accent */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #b27f3f; /* o nuanță mai închisă pentru hover */
  text-decoration: underline;
}





/* Alte elemente utile */
strong {
  font-weight: 700;
}

em {
  font-style: italic;
}



/* Small devices */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  h2 {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}



 /* CONTAINER CENTRAL */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* MAIN LAYOUT */
    main {
      padding: 40px 0;
    }

    /* SECTION MODERN */
    section {
      margin-bottom: 60px;
      background: #fff;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }



    section h2 {
      margin-bottom: 20px;
      font-size: 2rem;
      color: #111;
    }

    section p {
      font-size: 1rem;
      color: #555;
    }

    /* FOOTER MODERN */
    footer {
      background-color: var(--footer);
      color: #fff;
      padding: 30px 0;
    }

    footer .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    footer p {
      margin: 5px 0;
      font-size: 0.9rem;
            color: #fff;
    }

    @media (max-width: 768px) {
      section {
        padding: 30px 20px;
      }

      section h2 {
        font-size: 1.5rem;
      }

      footer .container {
        padding: 0 10px;
      }
    }






.btn {
    display: inline-block;
    background-color: var(--butoane-fundal);
    color: var(--b-text);
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;

font-size: 1rem;    
transition: background-color 0.3s ease;
}



.btn:hover {
    background-color: var(--b-text-hover);
    color: var(--b-text);
    text-decoration: none;
}


.btn:active {
    background-color: var(--b-text-hover);
    color: var(--b-text);
    transform: scale(0.98);
}



.btn:focus {
    background-color: var(--b-text-hover);
    color: var(--b-text);
    transform: scale(0.98);
    text-decoration: none;
}


.btn2 {
    display: inline-block;
background-color: transparent;
    border: 1px solid var(--butoane-fundal);
    color: var(--butoane-fundal);
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}



.btn2:hover {
    background-color: var(--butoane-fundal);
    color: var(--b-text);
}

header {
    min-height: 80px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

    .logo img {
      height: 50px;
      object-fit: contain;
    }

    .menu {
      display: flex;
      gap: 30px;
        z-index: 1000;
    }






.menu ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.menu li {
  position: relative;
}

.menu li ul {
  display: none; /* ascunde submeniul implicit */
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  min-width: 180px;
}

.menu li:hover > ul {
  display: block; /* afișează submeniul la hover */
}











    .menu a {
      color: var(--text1);
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      padding: 6px 16px;
      transition: 0.3s;
    }

    .menu a:hover {
      background-color: var(--butoane-fundal);
      border-radius: 5px;
      color: var(--b-text);
    }

.hamburger {
  display: none;
  position: fixed;
  right: 20px;
  top: 25px;
  z-index: 1001;
  width: 30px;
  height: 24px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Transformare în X */
.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

    @media (max-width: 768px) {
      .hamburger {
        display: flex;

      }

      .menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.95);
        display: none;
        transition: 0.3s ease-in-out;
      }

      .menu.active {
        display: flex;
      }

      .menu a {
        font-size: 1.5rem;
        padding: 20px;
      }
    }

    /* Lock scroll when menu is open */

    body.menu-open {
  overflow: hidden;
  height: 100vh;
}



  body.menu-open .menu {
    display: flex;
  }



.lang-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.lang-button {
  background: white;
  border: 1px solid #ccc;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flag-icon {
  width: 20px;
  height: 14px;
  object-fit: contain;
  vertical-align: middle;
}

.lang-menu {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  margin-top: 0px;
  padding: 0;
  list-style: none;
  z-index: 1000;
  min-width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.lang-menu li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

.lang-menu li a:hover {
  background: #f0f0f0;
}

.lang-dropdown:hover .lang-menu {
  display: block;
}




    @media (max-width: 768px) {
      .lang-dropdown {
        margin-right: 60px;
      }
    }


.full-width-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: calc(100vw - 8px);
  z-index: 0;
       overflow: hidden;
}
 .hero-section {
      position: relative;
      min-height: 600px;
      display: flex;
      height: calc(100vh - 80px); /* minus header height */
      justify-content: center;
      align-items: center;
      background-color: #1c2d49;
      overflow: hidden;
      color: white;
      text-align: center;
      border-radius: 0;
          padding: 0;
    }

    .hero-section video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      width: auto;
      height: auto;
      z-index: -1;
      opacity: 0.4;
      pointer-events: none;
      
    }

    



.hero-content p{
     color: #ffffff
}



.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 100%;
  width: 100%;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 50%;
  max-width: 600px;
  text-align: left;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--logo);
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--b-text)
}



.hero-image-wrapper {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  min-height: 500px;
}

.hero-image {
 width: 100%;
  height: 100%;
  object-fit: contain;
}



@media (max-width: 500px) {
.hero-image-wrapper {
  display: none ;
}
}



/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.hero-slider .siema {
  width: 100%;
}
.hero-slider .hero-slide {
  min-height: 400px;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0px;
  text-align: left;
  margin-bottom: 30px;
}
.hero-slider .hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-slider .hero-text p {
  margin-bottom: 1rem;
}
.hero-slider .hero-text .btn {
  padding: 0.6em 1.2em;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Controls & dots */
.hero-slider .slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 10px;
  left: 0px;
  margin-left: -15px;

}
.hero-slider .slider-controls button {
  padding: 0.5em 1em;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.0rem;
}
.hero-slider .slider-dots {
  display: flex;
  gap: 0.5rem;
}
.hero-slider .slider-dots .dot {
  width: 12px;
  height: 12px;
  background: #aaa;
  border-radius: 50%;
  cursor: pointer;
}
.hero-slider .slider-dots .dot.active {
  background: var(--logo);
}







.about-home {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.about-home h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.about-home p {
  font-size: 1.1em;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}











.services-section {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.services-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}


.service-card:hover {
  transform: translateY(-5px);
    text-decoration: none;
}

.service-card i {
  font-size: 2em;
  color: var(--logo);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.1em;
  color: #333;
}



.services-text-bottom {
  margin-top: 40px;

}

.services-text-bottom h3 {
  font-size: 1.5em;
  margin-bottom: 30px;
}

.services-text-bottom a {
margin: 0 auto;
  width:300px; 
  border-radius:5px; 
  font-size:16px; 
  cursor:pointer; 
  display:flex; 
  align-items:center; 
  gap:8px;
  justify-content: center;
}



/* Animație */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}



.testimonials-section {
  background-color: var(--footer);
  border-radius: 0;
}



.testimonials-section .container {
  position: relative;
}


.testimonials-section h2 {
  color: var(--b-text);
  margin-bottom: 30px;
}

.siema {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  width: calc(100% - 60px);
  box-sizing: border-box;
  padding: 20px;
  margin-left: 30px;

  height: 400px;
}


.testimonial-slide h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--logo);
}

.testimonial-slide p {
  color: var(--b-text);
}

.dots-container {
  text-align: center;
  margin: 10px 0;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: var(--b-text);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: var(--logo);
}

button#testimonialPrev,
button#testimonialNext {

  margin: 5px;
  position: absolute;


   background: none;
  border: none;
  font-size: 24px;
  color: var(--b-text);
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;


}

button#testimonialPrev {
  top:50%;
  left: 0;
}

button#testimonialNext {
  top:50%;
  right: 0;
}



button#testimonialPrev:hover,
button#testimonialNext:hover {
  color: var(--logo);
}









.oferte-fierbinti {
  padding: 40px 20px;
  background: var(--fon_section);
  text-align: center;
}

.oferte-fierbinti h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #c0392b;
  margin-top: 20px;}

.oferte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.oferta-card {
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.oferta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.oferta-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.oferta-card h3 {
  margin: 15px 15px 10px;
  font-size: 1.2rem;
  color: #333;
}

.oferta-card p {
  margin: 0 15px 15px;
  font-size: 0.95rem;
  color: #666;
  flex-grow: 1;
}

.btn-oferta {
  display: inline-block;
  margin: 15px;
  padding: 10px 20px;
  background: var(--butoane-fundal);
  color: var(--b-text);
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-oferta:hover {
  background: var(--b-text-hover);
  text-decoration: none;
  color: var(--b-text);
}











 .galerie {
    
      margin: auto;
      padding: 20px;
    }



    .titlu-sectiune h2 {
      text-align: center;
      font-size: 2em;
      margin-bottom: 40px;

    }

    .container-poze {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }

    .col-poze {
      flex: 1 1 45%;
    }

    .col-poze h2 {
      font-size: 20px;
      margin-bottom: 20px;
      padding-bottom: 8px;
        position: relative;
  display: inline-block;
  width: 100%;
    }

    .col-poze h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  border-bottom: 2px solid var(--footer);
    }

    .grid-poze {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }

 .grid-poze-galery {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
 }




.grid-poze a img, .grid-poze-galery a img {
  aspect-ratio: 4 / 3; /* sau 1 / 1 pentru pătrat */
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  height: auto;
}


    .grid-poze a:hover img, .grid-poze-galery a:hover img {
      transform: scale(1.05);
    }


    .galerie .btn {
      margin-top: 20px;
    }


    /* Responsive */
    @media (max-width: 768px) {
      .container-poze {
        flex-direction: column;
      }
      .grid-poze, .grid-poze-galery {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 500px) {
      .grid-poze, .grid-poze-galery {
        grid-template-columns: 1fr;
      }
    }







    .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--butoane-fundal);
  color: var(--b-text);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.btn-back:hover {
  background-color: var(--b-text-hover);
  color: var(--b-text);
  transform: translateX(-2px);
  text-decoration: none;
}

.btn-back .icon {
  width: 20px;
  height: 20px;
}







.contact-form {
display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
}



.contact {
  margin-top: 40px;
}

  .contact-info {
    width: 100%;

  }


  .contact-form {
    width: 100%;
  }
  .contact-info h2 {
    color: var(--logo);
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 40px;;
  }

  .contact-info p {
    margin: 8px 0;
    font-size: 1rem;
  }

  .contact-info strong {
    color: #222;
  }



  
  p.intro {

    font-size: 1.1rem;

  }

  form {
    display: grid;
    gap: 20px;
  }

  label {
    font-weight: 600;
    color: #222;
    display: block;
    margin-bottom: -20px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border: 1.8px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s ease;
  }

  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  textarea:focus {
    border-color: #0056b3;
    outline: none;
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  .checkbox-group label {
    margin: 0;
    font-weight: 400;
    color: #444;
  }



.contact-form button {
  border: none;
  cursor: pointer;
}




.page-header {
margin-top: 50px;
margin-bottom: 50px;
}



.contact-section {
    background-color: var(--footer);
    padding: 10px;
    border-radius: 10px;

    margin: 40px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);

  }

  .contact-section h2 {
    margin-bottom: 20px;
    color: var(--logo);
margin-left: 40px;
    margin-top: 20px;
    font-size: 1.6rem;
  }

  .contact-item {
    display: flex;
color: var(--b-text);
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  .contact-item .icon {
    font-size: 1.4rem;
    color: #0056b3;
  }

  .contact-item a {
color: var(--b-text);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    text-decoration: none;
    color: var(--logo);
  }




   .social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 30px 0;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9eef5;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .social-icon:hover {
    transform: scale(1.1);
  }


  
  .whatsapp {
    border-radius: 20px;
    width: 170px;
    background-color: #25d366;
    color: #fff;
    margin: 0 auto;
  }


  .facebook:hover { background-color: #1877f2; color: #fff; }
  .instagram:hover { background-color: #e1306c; color: #fff; }
  .whatsapp:hover { background-color: #25d366; color: #fff; text-decoration: none; }
  .tiktok:hover { background-color: #010101; color: #fff; }









  .notification {
  position: relative;
  padding: 15px 20px;
  border-radius: 6px;
  margin: 20px auto;
 width: 100%;
  color: #fff;
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeIn 0.5s ease-in-out;
}

.notification.success {
  background-color: #28a745;
  border-left: 6px solid #1e7e34;
}

.notification.error {
  background-color: #dc3545;
  border-left: 6px solid #bd2130;
}

.notification.info {
  background-color: #17a2b8;
  border-left: 6px solid #117a8b;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  margin-left: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








/* === Blog Styles (prefix: blog-) === */

.blog-section {
  padding: 40px;


}



.blog-container {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 20px;
  color: #111827;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 14px;
  color: #4b5563;
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-section .btn {
  align-self: flex-start;

  text-decoration: none;
  padding: 8px 26px;


  transition: background-color 0.3s ease;
}



.blog-date {
  font-size: 13px;
  color: #9ca3af;
  margin-top: -6px;
  margin-bottom: 12px;
}






/* === Pagination Styles === */

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.pagination a {
  display: inline-block;
  padding: 8px 14px;
  background-color: #f3f4f6;
  color: #1f2937;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid #e5e7eb;
}

.pagination a:hover {
  background-color: #e5e7eb;
  color: #111827;
}

.pagination a.active {
  background-color: var(--logo);
  color: #ffffff;
  font-weight: 600;
  border-color: var(--logo);
}










/* === Footer Styles (prefix: footer-) === */

.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}


.footer .logo {
  width: 200px;
}


.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  text-decoration: none;
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-social-link:hover {
  color: #ffffff;
}

.footer-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #374151;
  margin-top: 40px;
  padding-top: 20px;
}


.footer-credit-link {
  color: #60a5fa; /* albastru deschis elegant */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit-link:hover {
  color: #ffffff;
  text-decoration: underline;
}












.statistici {
  display: flex;
  justify-content: space-between;
    gap: 40px; /* sau 20px dacă preferi mai mic */
  color: white;
  text-align: center;
background: transparent;
 box-shadow: none;
}








.stat-item {
    background-color: #111827;
      padding: 40px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;

}

.stat-item:hover {
  background-color: var(--logo);
}



.stat-item i {
  font-size: 32px;
  color: white;
  margin-bottom: 10px;
}

.stat-item h2 {
  font-size: 3rem;
  margin: 0;
   color: white;
}

.stat-item p {
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 400;
   color: white;
}


@media (max-width: 480px) {
.statistici {
    flex-direction: column;
}
}



.btn_div_service {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 40px;
  margin-bottom: 80px;
}














.testi_btn {
  float: right;
  margin-top: -50px;
  cursor: pointer;
}




/* Fundalul modal: full viewport, centrat, fixed */
#testimonialModal {
  display: none; /* ascuns implicit */
  position: fixed !important;
  z-index: 9999 !important;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);


  /* Elimină display: flex de aici! */
  justify-content: center;
  align-items: center;

  overflow: auto;
}
/* Container formular */
#testimonialModal > div {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  position: relative;
  max-height: 90vh; /* ca să nu depășească ecranul */
  overflow-y: auto; /* scroll intern dacă conținutul e mare */

    z-index: 999999 !important;
}



/* Titlu */
#testimonialModal h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #333;
}

/* Label */
#testimonialModal label {
  font-weight: 600;
  display: block;
  margin-bottom: 0px;
  color: #555;
  padding: 0;
}

/* Input & textarea */
#testimonialModal input[type="text"],
#testimonialModal input[type="email"],
#testimonialModal input[type="number"],
#testimonialModal textarea,
#testimonialModal select {
  width: 100%;
  padding: 10px 12px;

  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  margin:0;
}

#testimonialModal input[type="text"]:focus,
#testimonialModal input[type="email"]:focus,
#testimonialModal input[type="number"]:focus,
#testimonialModal textarea:focus {
  border-color: #007bff;
  outline: none;
}

/* Butoane */
#testimonialModal button[type="submit"],
#testimonialModal button[type="button"] {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: 10px;
}

/* Submit - albastru */
#testimonialModal button[type="submit"] {
  background-color: var(--butoane-fundal);
  color: white;
}

#testimonialModal button[type="submit"]:hover {
  background-color: var(--b-text-hover);
}

/* Close - gri */
#testimonialModal button[type="button"] {
  background-color: #ccc;
  color: #333;
}

#testimonialModal button[type="button"]:hover {
  background-color: #999;
}







 .why-us {
  background: #F8F9FA;
 }


  .why-us h2 {
  text-align: center;
  margin-bottom: 40px;
margin-top: -20px;}
.cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  background: var(--footer);

  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.card-icon {
  font-size: 2.5rem;
  color:var(--b-text);
  margin-bottom: 12px;
margin-left: 50%; /* Center icon */
  transform: translateX(-50%); /* Adjust for centering */
}


.card h3 { margin:10px 0 8px; font-size:1.5rem; color: var(--b-text); }
.card p { margin:0; color: var(--b-text); opacity: 0.8; }
/* Ajustări mobile */
@media (max-width:480px) {
  .card { padding:14px; }
  .why-us h2 { font-size:1.25rem; }
}

.card:hover {

  background-color: var(--logo);
}



@media (max-width: 500px) {
  .hero-inner {
    width: 99%;

  }

.hero-slider .slider-controls  {
  display: none ;
}

.dots-container {
  display: none ;

}
}



@media (max-width: 768px) {

.hero-text h2 {
  font-size: 1.8rem;
}


  .hero-text, .testimonial-slide {
    flex: 1 1 100%;
    max-width: 100%;
  }




}