*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#111;
color:white;
}

.navbar{
position:absolute;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 50px;
z-index:10;
}

.navbar ul{
display:flex;
gap:25px;
list-style:none;
}

.navbar a{
color:white;
text-decoration:none;
font-weight:500;
}

.logo{
font-weight:700;
font-size:20px;
}

.hero{
position:relative;
height:100vh;
overflow:hidden;
}

.hero img{
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
width:90%;
max-width:900px;
z-index:5;
}

.hero-content h1{
font-size:4rem;
margin-bottom:20px;
}

.hero-content p{
font-size:1.2rem;
margin-bottom:30px;
}

.buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn{
background:#f4b400;
color:black;
padding:15px 30px;
border-radius:10px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.whatsapp{
background:#25D366;
}

.section{
padding:90px 10%;
}

.section h2{
text-align:center;
font-size:3rem;
margin-bottom:50px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#1d1d1d;
padding:30px;
border-radius:15px;
text-align:center;
font-size:18px;
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.dark{
background:#181818;
}

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:15px;
}

/* Carousel / Portofoliu Slider */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border: 2px solid #222;
}

.carousel-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  height: 500px;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  padding: 30px 20px 20px;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Navigare */
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #f4b400;
  border: 1px solid rgba(244, 180, 0, 0.3);
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-prev:hover, .carousel-next:hover {
  background: #f4b400;
  color: #111;
  border-color: #f4b400;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px rgba(244, 180, 0, 0.4);
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #f4b400;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(244, 180, 0, 0.6);
  width: 24px;
  border-radius: 6px;
}

.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .carousel-slides {
    height: 320px;
  }
  .carousel-prev, .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .carousel-prev {
    left: 10px;
  }
  .carousel-next {
    right: 10px;
  }
  .carousel-caption {
    font-size: 1rem;
    padding: 20px 10px 15px;
  }
}

.contact{
text-align:center;
}

.contact p{
font-size:20px;
margin:10px 0;
}

footer{
padding:30px;
text-align:center;
background:black;
}

.floating-whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
text-decoration:none;
z-index:999;
}

@media(max-width:768px){

.navbar{
padding:20px;
flex-direction:column;
gap:15px;
}

.hero-content h1{
font-size:2.3rem;
}

.about{
grid-template-columns:1fr;
}

}

/* --- SEO & Expanded Content Additions --- */

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: -30px auto 50px auto;
  line-height: 1.6;
}

/* Service Card Detail Improvements */
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #f4b400;
}

.card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  text-align: left;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.benefit-card {
  background: #181818;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #f4b400;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(244, 180, 0, 0.1);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 1.2rem;
  color: #f4b400;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #1d1d1d;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
  transition: 0.3s;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  text-align: left;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq-question:hover {
  background: #252525;
  color: #f4b400;
}

.faq-question span {
  font-size: 1.4rem;
  color: #f4b400;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #181818;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-answer ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-item.active .faq-answer {
  max-height: 1200px; /* high enough to contain text */
  padding: 20px;
  border-top: 1px solid #333;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Legal Notice in Footer */
.legal-notice {
  max-width: 900px;
  margin: 40px auto 20px auto;
  padding: 20px;
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  text-align: justify;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

.legal-notice p {
  margin: 0;
}

@media(max-width:768px) {
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }
}