/* style.css */
:root {
  --alb: #ffffff;
  --gri-deschis: #dbddd8;
  --gri-mediu: #9b9790;
  --accent-portocaliu: #be5915;
  --verde-inchis: #4f6551;
  --gri-inchis: #524751;
  --bej: #6d6357;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem 0;
}

/* NAVIGATION BAR */
.navbar {
  background:linear-gradient(to right, #f9f9f9, #b8b8b8);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 1px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 100%;
  margin: auto;

}

.logo {
  font-size: 2rem;
  font-weight: bold;
}
.logo-img {
  height: 90px;
  width: auto;
  display: block;
  margin-top: -10px;  /* "taie" de sus */
  margin-bottom: -15px;  /* "taie" de jos */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  color: #6d6357;
  font-weight: 600;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  font-size: 1.2rem; /* sau 1.2rem dacă vrei și mai mare */
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.2s ease;
}

.nav-links li a .dropdown-icon {
  margin-left: 5px;
  font-size: 0.8rem;
}

.nav-links li a:hover , .nav-links li a.active{
  color: #be5915;
  background-color: #aeaaa49f; /* un glow subtil */
  transform: translateY(-2px);
}


/* DROPDOWN */
.nav-links li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #6d6357;
  padding: 0.5rem 0;
  border-radius: 4px;
  z-index: 999;
  min-width: 220px;
  list-style: none;
}

.nav-links li:hover ul {
  display: block;
}

.nav-links li ul li {
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.nav-links li ul li a {
  color: white;
  display: block;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.6rem 1rem;
  transition: background-color 0.3s, transform 0.2s ease;
  border-radius: 5px;
}

.nav-links li ul li a:hover{
  background-color: #dbddd8;
  transform: translateX(5px);

}

.btn-call-navbar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #be5915;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
  position: relative;
  z-index: 10;
}

.btn-call-navbar:hover {
  background-color: #d77432;
  transform: translateY(-2px);
}

.pulse {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(190, 89, 21, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(190, 89, 21, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(190, 89, 21, 0);
  }
}

.btn-call-navbar .call-text {
  line-height: 1.2;
  text-align: left;
}

 /* Sticky call button */
.sticky-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #be5915;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-align: center;
  transition: transform 0.2s ease;
  animation: pulseCall 2s infinite;
}

/* Hover effect */
.sticky-call-btn:hover {
  background-color: #d77432;
  transform: scale(1.1);
}

/* Pulse animation */
@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(190, 89, 21, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(190, 89, 21, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(190, 89, 21, 0);
  }
}

.burger {
  display: none;
  cursor: pointer;
  margin-top: 1.5rem;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: rgb(0, 0, 0);
  margin: 5px;
  transition: all 0.3s ease;
}



/* SUBNAV BAR */
.subnav {
  background-color: #4a433b; /* maro închis elegant */
  font-size: 0.95rem;
  color: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  ;
}

.subnav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.subnav .info {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.subnav .info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #f1f1f1;
}

.subnav .info i {
  color: #dbddd8;
  font-size: 1rem;
}

/* Buton elegant */
.subnav .quote-btn {
  background-color: #b6b2ac;
  color: #4a3b2c;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.subnav .quote-btn:hover {
  background-color: #bababa;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


/* Responsive */
@media screen and (max-width: 1160px) { /*768*/
  
  .logo-img{
    height: 60px;
  }

  .nav-container {
    justify-content: center;
    position: relative;
  }

  .btn-call-navbar {
    display:none;
  }

  .burger {
    position: absolute;
    right: 0.75rem;
    bottom: 1.2rem;
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    background-color:#6D6357;
    flex-direction: column;
    align-items: center;
    width: 60%;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding-top: 4rem;
    z-index: 999;
  }

  .nav-links.nav-active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.toggle .line2 {
    opacity: 0;
  }

  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .subnav {
    display:none;
  }

  .nav-links li ul {
    position: static;
    background-color: transparent;
    padding: 0;
    display: none;
  }

  .nav-links li.nav-expanded ul {
    display: flex;
    flex-direction: column;
  }

  .nav-links li a:hover , .nav-links li a.active{
    color: #be5915;
    background-color: rgba(255, 255, 255, 0.577); /* un glow subtil */
    transform: translateY(-2px);
  }

  .nav-links li a {
    text-decoration: none;
    color: #DBDDD8;
  }
  .sticky-call-btn {
    display: block;
  }

}

/* HEADER */
.header {
  background: linear-gradient(to right, #00416a, #e4e5e6);
  color: white;
  padding: 3rem 0;
  text-align: center;
}


.slogan {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}



.intro {
  background-color: white;
  padding: 2rem 0;
  text-align: center;
}

.intro h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #00416a;
}

.services {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.services li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}





/* BANNER CU IMAGINE ȘI BUTON SERVICII */
.hero-banner {
  padding: 4rem 1rem;
  background: linear-gradient(to right, #f9f9f9, #b8b8b8);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 1rem;
}

.hero-text .highlight {
  color: #be5915;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background-color: #be5915;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
  background-color: #d77432;
  transform: translateY(-2px);
}

/* IMAGE & CARDS */
.hero-visual {
  position: relative;
}

.hero-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.421);
   border: 2px solid rgb(255, 255, 255);
}

.hero-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.847);
  border-radius: 25px;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.421);
  font-weight: 600;
  color: #757575;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-card.top {
  top: -5%;
  right: -10%;
}

.hero-card.bottom {
  bottom: -5%;
  left: 5%;
}
.hero-img-overlay {
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 340px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 2;
  border: 2px solid rgb(255, 255, 255);
}


/* RESPONSIVE */
@media screen and (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero-banner {
    padding: 0;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
  }

  .hero-text {
    padding: 4rem 0.1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.716);
  }

  .hero-text h1 {
    font-size: 2rem;
    color: white;
  }
  .hero-text .highlight {
    text-shadow:
      0 0 2px #d6d4cb,
      0 0 2px #d6d4cb,
      0 0 2px #d6d4cb,
      0 0 2px #d6d4cb;
  }

  .hero-subtitle {
    font-size: 1rem;
    color: #f0f0f0;
  }

  .hero-visual {
    display: none; 
  }
}


/* SECTIUNE 3 COLOANE SUB BANNER */
.features-fade-wrapper {
  position: relative;
  overflow: hidden;
}

.features-section {
  background: linear-gradient(to right, #f9f9f9, #b8b8b8);
  padding: 4rem 1rem;
  position: relative;
  z-index: 1;
}

.features-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px; /* înălțimea efectului de fade */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  z-index: 2;
  pointer-events: none;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(144, 110, 95, 0.612);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: #f1ebe4;
  color: #be5915;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.2rem;
  color: #6d6357;
  margin: 0;
}

.feature-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}



@media screen and (max-width: 768px) {
  .features-section {
    padding: 2rem 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-content p {
    font-size: 0.95rem;
  }
}

/* SECTIUNE 2 COLOANE CU IMAGINE + DESCRIERE */
.about-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 4rem 2rem;
   background-color: white;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.421);
  border: 2px solid rgb(255, 255, 255);
}

.about-text h2 {
  font-size: 1.6rem;
  color:#6d6357;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-text .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background-color: #be5915;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text .btn-contact:hover {
  background-color: #d77432;
  transform: translateY(-2px);
}
/* Responsive: spațiu între secțiuni pe mobil */
@media screen and (max-width: 768px) {
  
  .about-section {
    padding: 2rem 1rem;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-text .btn-contact {
    margin-top: 1rem;
  }
}



/* SECTIUNE SERVICII PE PAGINA PRINCIPALA */
/* Wrapper pentru fade alb sus */
.services-fade-wrapper {
  position: relative;
  overflow: hidden;
}

.services-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 2;
  pointer-events: none;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  color: #4a3b2c; /* sau orice culoare vrei tu */
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #be5915;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* Fundal gradient orizontal */
.services-overview {
  background: linear-gradient(to right, #f9f9f9, #b8b8b8);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARDURI MODERNE */
.service-card {
  background-color: #6d6357; /* maro închis */
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.529);
  color: #ffffff;
  text-align: center;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* IMAGINE CU EFECT 3D & BORDURĂ */
.service-card img {
  width: 100%;
  height: 220px;
  max-width: 340px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 2px solid #fff;
  box-shadow: 5px 5px 8px rgba(255, 255, 255, 0.289);
}

/* TITLU */
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* PARAGRAF */
.service-card p {
  font-size: 0.95rem;
  color: #eaeaea;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* BUTON MODERN */
.service-card .btn-details {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background-color: #be5915;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card .btn-details:hover {
  background-color: #d77432;
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .services-overview {
    padding: 3rem 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
    width: 95%;
    margin: auto;
  }

  .service-card img {
    width: 100%;
    height: 200px;
  }
  .service-card p {
    display: none;
  }
}


/* SECTIUNE CTA (CALL TO ACTION) */
.cta {
   background: linear-gradient(to right, #f9f9f9, #b8b8b8);
  color:  #4a3b2c;;
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta .btn-urgent {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background-color: #be5915;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta .btn-urgent:hover {
 background-color: #d77432;
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .cta .btn-urgent {
    display: block;
    width: 80%;
    margin: 0.5rem auto;
  }
}

/* FOOTER SECȚIUNE DEASUPRA COPYRIGHT */
.footer-top {
  background-color: #4a433b;
  color: white;
  padding: 3rem 1.5rem;
}

.footer-top .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-top .footer-col img {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-top .footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #d0ae96;
}

.footer-top .footer-col p,
.footer-top .footer-col li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-top .footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-top .footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-top .footer-col ul li a:hover {
  color: #d0ae96;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .services-overview {
    padding: 3rem 1rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-card img {
    max-width: 100%;
  }
  .footer-top .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-top .footer-col img {
    margin: auto;
  }
}



/*footer*/

.footer {
  background-color: #333;
  color: white;
  text-align: center;
  font-size: 0.9rem;
}


/* Fade-in modern */
.fade-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
}


