/* ========== Reset ========== */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #FAF5EC;
}

/* ========== Navbar ========== */
.navbar {
  background-color: #FAF5EC;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
 

}

.container-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}


/* Logo principal */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;

  
}

.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* Lors du scroll */
.navbar.scrolled .logo-container {
  opacity: 0.9;
  transform: scale(0.9);
}



/* Nav links */
.nav-links ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links ul li a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}

.nav-links ul li a:hover {
  color: #d35400;
}

.nav-links ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d35400;
  transition: width 0.3s;
}

.nav-links ul li a:hover::after {
  width: 100%;
}

/* Efekti scroll për navbar DHE logon */
.navbar.scrolled {
  background-color: rgba(250, 245, 236, 0.9); /* e njëjta ngjyrë me pak transparencë */
  backdrop-filter: blur(10px);
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);  vija posht menus */
  transition: all 0.3s ease;
}






/* Hamburger icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #000;
  margin: 4px 0;
  transition: 0.4s;
}

/* Active hamburger */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* -----------Seksion 1 -------------------------- */

/* Hero Section */

.hero {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  
  
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #111;
  padding: 0; /* Sigurohu që nuk ka padding të tepërt këtu */
}


.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  background: rgba(250, 245, 236, 0.4); /* më e butë dhe e ngrohtë */
  padding: 15px 25px;
  border-radius: 16px; /* për të butësuar skajet */
  backdrop-filter: blur(6px); /* shton efekt xhami */
  display: inline-block;
}

.btn-devis {
  background: #d35400; /* portokalli i lehtë, transparent */
  color: #fff;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
  backdrop-filter: blur(6px); /* efekti xhamit */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* hije e butë */
  border: 1px solid rgba(255, 255, 255, 0.2); /* kontur transparent */
}


.btn-devis:hover {
  background: rgba(211, 84, 0, 0.35);
  transform: scale(1.06);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}







/* ------------ Seksioni 2: Nos Services ------------------------ */

.nos-services {
  padding: 60px 20px;
  padding-top: 70px;
  padding-bottom: 100px; /* Kjo e lejon hijen të duket e plotë */
  background-color: #FAF5EC;
  text-align: center;
}


.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #d35400;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* Kontejneri i kartelave */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px; /* 💡 kjo lejon shadow të duket e plotë */
}

/* Rreshti i kartelave */
.services-row {
  display: flex;
  justify-content: center;
  gap: 130px;
 
}
.services-row:last-child {
  margin-bottom: 0;
}



/* Kartela */
.service-card {
  background: #FFF5E6;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* më e lehtë */
  flex: 0 1 280px;
  opacity: 0;
  transform: translateY(40px);
  transition: background 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
}

.service-card:hover {
  transform: translateY(-8px); /* më pak për më shumë elegancë */
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.nos-services,
.services-container,
.services-row {
  overflow: visible !important;
}



/* Titujt brenda kartelave */
.service-card h3 {
  color: #d35400;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
  font-size: 22px;
}

/* Lista pa pika */
.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}

/* Animacion për shfaqje */
.section-title.show,
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  text-decoration: none;
  color: inherit;
}







/* ------------ Seksioni 3: A Propos ------------------------ */

.a-propos {
  padding: 80px 20px;
  background-color: #FAF5EC;
  margin-bottom: 10px; /* Hapësirë nën seksionin A Propos */
  padding-bottom: 180px;
  padding-top: 100px;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.05);  Vijë ndarëse e lehtë  */
  
}

.a-propos-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeSlide 1s ease forwards;
  gap: 180px;
}

.a-propos-image img {
  width: 100%;
  max-width: 480px;
  height: 400px; /* e shtojmë height të kontrolluar */
  object-fit: cover; /* prerje e bukur pa deformim */
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.a-propos-text {
  max-width: 600px;
  color: #333;
}

.a-propos-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  color: #d35400;
  margin-bottom: 20px;
  text-transform:uppercase;
}

.a-propos-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

/* Slide-in djathtas (teksti) në desktop */
.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.5s; /* Teksti del pak më vonë */
}


.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-in majtas (foto) në desktop */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.2s; /* Foto del pak më shpejt */
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Animacion slide-up për mobile */
.slide-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ------------ Seksioni 4: Footer ------------------------ */


.footer {
  background-color: #FAF5EC;
  padding: 40px 20px 20px;
  font-family: 'Roboto', sans-serif;
  color: #333;
  /* padding-top: 340px; */
  border-top: 1px solid rgba(0, 0, 0, 0.05);
 

}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3,
.footer-column h4 {
  color: #d35400;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #d35400;
}

.footer-column i {
  color: #d35400; /* ngjyra portokalli */
  font-size: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Social icons styling */
.social-icons-footer {
  margin-top: 15px;
}

.social-icons-footer a {
  font-size: 22px;
  margin-right: 12px;
  transition: transform 0.3s ease;
    text-decoration: none; /* ❌ Heq underline */
    margin-right: 10px;    /* Hapsirë midis ikonave */
    font-size: 20px;
  }
  


.social-icons-footer .fa-whatsapp {
  color: #25D366;
}

.social-icons-footer .fa-linkedin {
  color: #0077B5;
}

.social-icons-footer a:hover {
  transform: scale(1.2);
}

/* Footer bottom text centré */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}

/* Page Contact ----------------------- */

/* ----------- Section Contactez-nous ------------ */
/* ------------ Seksioni Contactez-nous ------------------ */
.contactez-nous {
  padding: 60px 30px;
  background-color: #FAF5EC;
  padding-bottom: 400px;
}

.contact-image-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Kutia portokalli me tekst */
.contact-overlay-box {
  position: absolute;
  top: 200px;
  right: 40px;
  background-color: #d35400;
  color: white;
  padding: 25px 30px;
  border-radius: 8px;
  max-width: 300px;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.contact-overlay-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.contact-overlay-box p {
  margin: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Formulari mbi foto */
.contact-form-box {
  position: absolute;
  bottom: -240px;
 right: 500px;
  transform: translateX(-50%);
  background: white;
  padding: 25px;
  border-radius: 12px;
  width: 80%;
  max-width: 350px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
}

.contact-form-box button {
  background-color: #d35400;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-form-box button:hover {
  background-color: #b84300;
}

/* Error Message */
.error-message {
  color: red;
  font-size: 13px;
  display: none;
  margin-top: -10px;
}

/* ------- Page Services -------------- */


/* Fichier: service.css */



.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.main-title {
  font-size: 32px;
  color: #121111;
  text-align: center;
  margin-bottom: 100px;
}

.service-zigzag {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.service-zigzag:nth-child(even) {
  flex-direction: row-reverse;
}

.service-img {
  flex: 1;
  max-width: 500px;
  padding: 30px;
}

.service-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-content {
  flex: 1;
  min-width: 280px;
  padding: 30px;
}

.service-content h2 {
  font-size: 28px;
  color: #d35400;
  margin-bottom: 20px;
  font-weight: 500;
}

.service-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 300;
}

.button {
  background-color: #d35400;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.button:hover {
  background-color: #b84300;
  transform: scale(1.05);
}

/* CTA Service (Besoin d’un service ?) */
.cta-service {
  background-color: rgba(243, 229, 203, 0.207);
  padding: 60px 40px;
  border-radius: 16px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-text h2 {
  font-size: 28px;
  color: #1c1c1c;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.cta-text p {
  font-size: 18px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 10px;
}


.cta-button {
  background-color: #d35400;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
  background-color: #b84300;
  transform: scale(1.05);
}

.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(243, 229, 203, 0.207);
  padding: 60px 40px;
  border-radius: 16px;
  margin-bottom: 80px;
  gap: 40px;
 
}

.services-header h1 {
  font-size: 32px;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.services-header .img-part img {
  width: 250px;
  height: auto;
  object-fit: contain;
}

/* .services-header .btn-devis {
  background-color: #d35400;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 300;
  transition: background 0.3s ease;
  display: inline-block;
} */

/* .services-header .btn-devis:hover {
  background-color: #b84300;
} */

.parallax-img {
  transform: translateY(0px);
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* Fillimisht të fshehura */
.animate-left, .animate-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left {
  transform: translateX(-100px);
}

.animate-visible {
  opacity: 1;
  transform: translateX(0);
}



/* -------- Nouvelle version e services-header -------- */
.services-banner {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding: 60px 30px;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-direction: column; /* KY ËSHTË SEKRETI! */
  justify-content: center;
  align-items: center;
  gap: 20px; /* ose 30px për më shumë hapësirë */
  flex-wrap: wrap;
  margin-bottom: 80px;
  text-align: center;
}



.banner-title {
  font-size: 34px;
  font-family: 'Poppins', sans-serif;
  color: #d35400;
  animation: fadeIn 1s ease-in-out;
  margin: 0;
}

.banner-subtext {
  font-size: 1.2rem;
  font-weight: 500;
  color: #d35400;
  font-family: 'Poppins', sans-serif;
  margin: 20px 0 0 0; /* kjo krijon hapsirë sipër */
}

.banner-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}





.floating-icon {
  width: 180px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Galerie photo---------------------------------------------------- */
.galerie-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}


.service-gallery {
  margin-bottom: 80px; /* më shumë hapësirë poshtë */
  padding-bottom: 40px;
  border-bottom: 1px solid #eee; /* vijë ndarëse elegante (opsionale) */
}

.galerie-section h2 {
  font-size: 36px;
  margin-bottom: 35px;
}
.service-gallery h3 {
  font-size: 26px;
  margin-top: 10px;
  margin-bottom: 20px;
}


.service-title {
  font-size: 26px;
  color: #d35400;
  text-align: center;
  margin-bottom: 20px;
}

.swiper-container-main {
  width: 100%;
  max-width: 800px;
  height: 320px; /* ose sa të duket estetikisht mirë */
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f5f5f5; /* për kontrast me fotot që nuk mbushin 100% */
  display: flex;
  align-items: center;
  justify-content: center;
}


.swiper-container-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #FAF5EC; /* për të mbushur hapësirat anash nëse ka */
}




.swiper-container-thumbs {
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-container-thumbs .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.swiper-container-thumbs .swiper-slide {
  width: 100px !important;
  height: 70px;
  opacity: 0.4;
  cursor: pointer;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.swiper-container-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #d35400;
}

.swiper-container-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.swiper-container-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


section, img, .container, .services-row, .navbar {
  max-width: 100%;

}


section,
img,
.container,
.services-row,
.service-zigzag,
.service-img img {
  max-width: 100%;
  overflow-x: hidden;
}










/* ========== Responsive ========== */
@media (max-width: 768px) {
  .nav-links ul {
    z-index: 9999; /* Shumë më i madh për të qëndruar mbi gjithçka */
    position: absolute;
    top: 80px;
    right: 10px;
    background-color: #FAF5EC;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex-direction: column;
    display: none;
    border-radius: 10px;
  }
  .nav-links ul.show {
    display: flex;
  }
  

  .menu-toggle {
    display: flex;
  }

  .logo-container {
    width: 120px;
  }

  .hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 26px;
    padding: 10px 20px;
  }

  .btn-devis {
    font-size: 16px;
    padding: 10px 20px;
  }

  .services-row {
    flex-direction: column;
    gap: 30px;
  }

  .service-card {
    padding: 20px 25px 15px 25px; /* më pak padding poshtë */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
  }
  .service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .service-card li:last-child {
    margin-bottom: 0;
  }

      
  

  .a-propos-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 15px;
  }

  .a-propos-image img {
    max-width: 100%;
    height: auto;
  }

  .a-propos-text h2 {
    font-size: 24px;
  }

  .a-propos-text p {
    font-size: 16px;
  }

   /* Footer Page Accueil */

   .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .social-icons-footer {
    justify-content: center;
  }

  .social-icons-footer a {
    margin-right: 15px;
  }


  /* page service----------- */

  .banner-title {
    font-size: 22px;
    white-space: normal;
    padding: 0 10px;
  }

  .services-banner {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
  }
  .service-zigzag {
    flex-direction: column !important;
    text-align: center;
  }

  .service-img,
  .service-content {
    max-width: 100%;
  }

  .service-img img {
    height: 250px;
  }

  .main-title {
    font-size: 28px;
  }
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .services-header {
    flex-direction: column;
    text-align: center;
  }
  .services-header .img-part img {
    width: 140px;
  }

/* Galerie Photo (Responsive mobile) */
.galerie-section {
  padding: 20px 10px;
}

.service-gallery {
  margin-bottom: 40px;
}

.swiper-container-main {
  max-width: 100%;
  height: 220px;
}

.swiper-container-thumbs {
  max-width: 100%;
  overflow-x: auto;
  padding: 0 10px;
}

.swiper-container-thumbs .swiper-slide {
  width: 80px !important;
  height: 60px;
}
/* Contact ------------------------------ */
.contact-overlay-box {
    position: static;
    margin-top: 20px;
    width: 100%;
  }

  .contact-form-box {
    position: static;
    transform: none;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
  }

  .contact-image-wrapper {
    padding: 0 10px;
  }

  .contact-image-wrapper img {
    border-radius: 0;
  }

  .contact-form-box input,
  .contact-form-box textarea {
    width: 100%;
  }
}