
/* ==========================================================================
   1. Fonts & Imports
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,500,600,700|Roboto:300,400,500,700|Rubik:300,400,500,700,900&display=swap");

/* ==========================================================================
   2. Color & Background Utilities
   ========================================================================== */
.white-bg{background:#ffffff}
.gray-bg{background:#f5f5f5}
.section-bg1{background:#13151b}
.gray-bg{background:#f7f7fd}
.white-bg{background:#fff}
.black-bg{background:#16161a}
.theme-bg{background:#3957ff}
.brand-bg{background:#f1f4fa}
.testimonial-bg{background:#f9fafc}
.white-color{color:#fff}
.black-color{color:#16161a}
.theme-color{color:#3957ff}

/* ==========================================================================
   9. Preloader
   ========================================================================== */
/* ================= PRELOADER ================= */
#preloader-active {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

/* Kuti rrethore që rrotullohet */
.preloader-circle {
  width: 100px;
  height: 100px;
  border-style: solid;
  border-width: 2px;
  border-top-color: #3d3000;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  animation: rotate 1.8s linear infinite;
}

/* Imazhi brenda rrethit */
.preloader-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  transform: translate(-50%, -50%);
}

/* Animacioni i rrotullimit */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Kur faqja ngarkohet, fsheh preloaderin */
body.loaded #preloader-active {
  opacity: 0;
  pointer-events: none;
}


/* ================= INDEX.HTML ================= */
/* ================= HEADER ================= */
.header-area {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.main-header {
  padding: 18px 0;
  transition: all 0.3s ease;
}

.logo img {
  max-height: 50px;
  transition: transform 0.3s ease;
  margin-left: 110px;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ================= NAVIGATION ================= */
#navigation {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 0;
  padding: 0;
}
/* nav elemnts ne header */
#navigation li {
  list-style: none;
  position: relative;
   display: inline-block; /* garanton që çdo item të qëndrojë në një rresht */
   margin-right: 25px;
   right: 0px; /* e shtyn pak më djathtas menunë */
}

#navigation a {
  color: #7a6632;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

#navigation a:hover,
#navigation a.active {
  color: #3d3000;
}

.menu-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  right: -60px; /* ndrysho në -80px ose -100px nëse do më shumë në të djathtë */
}

/* ================= APPOINTMENT BUTTON ================= */

.header-btn {
  background-color: #b8860b;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 !important; /* heq çdo margin të mbetur */
  position: relative;
  right: 70px; /* e zhvendos fizikisht më majtas */
}

.header-btn:hover {
  background-color: #a3740a !important;
  color: #fff !important;
  transform: scale(1.07);
  letter-spacing: 0.3px;
  text-decoration: none;
}


/* ================= LANGUAGE DROPDOWN (MINIMAL) ================= */
.lang-dropdown {
  position: relative;
}

.lang-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7a6632;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.lang-dropdown .lang-icon {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.lang-dropdown.open .lang-icon {
  transform: rotate(180deg);
}

.lang-dropdown ul {
  position: absolute;
  top: 28px;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 5px 0;
  min-width: 120px;
  display: none;
  z-index: 999;
}

.lang-dropdown.open ul {
  display: block;
}

.lang-dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 15px;
  color: #3d3000;
  text-decoration: none;
  transition: 0.2s;
}

.lang-dropdown ul li a:hover {
  background: #f7f5f0;
  color: #a87e2f;
}

.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  #navigation {
    flex-direction: column;
  }
  .header-btn {
    display: none;
  }
  .lang-dropdown ul {
    position: relative;
    box-shadow: none;
}
.logo img {
  margin-left: 18px;
}
}


/* ================= HERO SECTION ================= */
/* ================= HERO SECTION ================= */
.slider-area {
  position: relative;
  width: 100%;
  height: 86vh;
  background: url('../assets/images/bgg.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 90px; /* për të mos u mbivendosur me headerin */
  padding-left: 8%; /* shton hapësirë majtas */
}

/* Gradient overlay majtas */
.slider-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.1));
  z-index: 1;
}

/* Përmbajtja */
.single-slider {
  position: relative;
  z-index: 2;
  animation: fadeSlideIn 1.2s ease forwards;
}

.hero__caption {
  color: #3a2c00;
  max-width: 600px;
}

/* Efekti i animimit */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Teksti */
.hero__caption span {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  color: #c1942f;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
  border-top: 2px solid #c1942f;
  padding-top: 4px;
}

.hero__caption h1 {
  font-size: 3.4rem;
  font-weight: 700;
  color: #3d3000;
  margin: 15px 0;
  line-height: 1.2;
}

.hero__caption p {
  color: #4b3f2b;
  font-size: 1rem;
  max-width: 1200px; /* më e gjerë për të zgjatur tekstin */
  margin-bottom: 35px;
  line-height: 1.65;
  letter-spacing: 0.2px;
}


/* Butoni */
.hero-btn {
  background-color: #c1942f;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 35px;
  border-radius: 3px;
  transition: all 0.3s ease;
  border: none;
  text-transform: none;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.3s ease forwards;
  animation-delay: 0.8s;
}

/* Animimi për butonin */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btn:hover {
  background-color: #a47f27;
  color: #fff;
}

/* Responsivitet */
@media (max-width: 992px) {
  .slider-area {
    height: 85vh;
    padding-left: 0;
    background-position: center;
  }
  .slider-area::before {
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  }
  .hero__caption {
    text-align: center;
    margin: 0 auto;
  }
  .hero__caption p {
    margin: 0 auto 30px;
  }
}

/* ================================
   SERVICES SECTION STYLING (FINAL VERSION)
================================= */
.categories-area {
  padding: 60px 0;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Title Section */
.section-tittle span {
  display: inline-block;
  color: #c19b53;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-tittle h2 {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  margin-bottom: 40px;
}

/* Service Cards */
.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px; /* një madhësi e njëjtë për të gjitha */
}

.service-card:hover {
  border-color: #c19b53;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

/* Ikona */
.icon-wrapper {
  margin-bottom: 20px;
}

.icon-wrapper img {
  width: 45px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(58%) sepia(47%) saturate(596%) hue-rotate(15deg) brightness(97%) contrast(90%);
}

/* Titulli + Butoni në një linjë */
.title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

/* Titulli i shërbimit */
.title-row h5,
.cat-cap h5 {
  font-size: 18px;
  font-weight: 600;
  color: #c19b53;  /* ngjyra ari */
  margin: 0;
}

.title-row h5 a,
.cat-cap h5 a {
  color: #c19b53;
  text-decoration: none;
  transition: color 0.3s;
}

.title-row h5 a:hover {
  color: #000;
}

/* Teksti i përshkrimit */
.cat-cap p,
.cat-cap ul {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 15px;
  text-align: justify;
}

/* Pika për listë */
.cat-cap ul {
  margin-left: 20px;
  list-style-type: disc;
}

.cat-cap ul li {
  margin-bottom: 6px;
}

/* Butoni Read More */
.read-more1 {
  font-size: 14px;
  font-weight: 600;
  color: #c19b53;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}

.read-more1:hover {
  color: #000;
}

/* Rreshtimi i elementeve për të qenë uniform */
.cat-cap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .service-card {
    margin-bottom: 30px;
    min-height: auto;
  }

  .title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-tittle h2 {
    font-size: 26px;
  }
}
/* ================================
   TRANSLATION ON INDEX
================================= */
.about-area {
  display: flex;
  flex-wrap: wrap;
  min-height: 550px;
  font-family: 'Poppins', sans-serif;
}

/* FOTO në anën e majtë */
.about-img {
  flex: 1;
  background-image: url("/assets/images/judge.jpg"); /* vendos këtu foton tënde */
  background-size: cover;
  background-position: center;
  min-height: 550px;
}

/* KONTAINERI I TEKSTIT DJATHTAS */
.about-details {
  flex: 1;
  background: radial-gradient(circle at bottom left, #b27e2b, #4c2c09, #2a1b08);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 80px 60px;
}

/* Përmbajtja brenda */
.right-caption {
  max-width: 600px;
  margin: auto;
}

/* Titulli dhe nën-titulli */
.section-tittle2 span {
  display: inline-block;
  color: #c19b53;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  border-top: 1px solid #c19b53;
  padding-top: 5px;
}

.section-tittle2 h2 {
  font-size: 30px;
  font-weight: 600;
  color: #fff !important;
  line-height: 1.4;
  margin-bottom: 25px;
}

/* Paragrafët */
.about-more p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Butoni */
.btn.post-btn {
  display: inline-block;
  background-color: #c19b53;
  color: #111;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.post-btn:hover {
  background-color: #a77d32;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .about-area {
    flex-direction: column;
  }

  .about-img,
  .about-details {
    flex: none;
    width: 100%;
    min-height: 350px;
  }

  .about-details {
    padding: 60px 30px;
    text-align: center;
  }

  .section-tittle2 h2 {
    font-size: 26px;
  }
}





/* ================================
   OUR CLIENTS SECTION
================================= */
/* ===== OUR CLIENTS SECTION ===== */
.clients-section {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 0;
}

.clients-section .section-tittle span {
  color: #c19b53;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-left: 55px;
}

.clients-section .section-tittle span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #c19b53;
  transform: translateY(-50%);
}

.clients-section .section-tittle h2 {
  font-size: 36px;
  color: #1a1a1a;
  font-weight: 600;
  margin-top: 15px;
  line-height: 1.3;
}

/* ===== CLIENT CARDS ===== */
.client-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 40px 20px;
  transition: all 0.3s ease;
  height: 320px; /* ✅ njësoj për të gjitha */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.client-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px; /* ✅ e njëjtë për të gjitha */
  margin-bottom: 20px;
}

.client-img img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-info h3 {
  font-size: 17px;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-info span {
  font-size: 14px;
  color: #888;
}

/* ===== SWIPER CONTROLS ===== */
.clientsSwiper {
  overflow: hidden; /* ✅ kartat brenda */
  padding: 0 60px;
}

/* ===== NAVIGATION BUTTONS ===== */
.custom-nav {
  color: #c19b53 !important;
  background: #fff;
  border: 1px solid #e0d4b8;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: absolute;
  top: 70%; /* në mes të swiper-it */
  transform: translateY(-50%);
  z-index: 20; /* ✅ mbi çdo element */
}

.custom-nav::after {
  font-size: 12px;
  font-weight: 600;
}

.custom-nav:hover {
  background: #c19b53;
  color: #fff !important;
  border-color: #c19b53;
  transform: translateY(-50%) scale(1.1);
}

/* pozicionimi jashtë swiper-it, por brenda container-it */
.swiper-button-prev {
  left: -25px; /* jashtë, pa u prerë */
}

.swiper-button-next {
  right: -25px;
}

/* fsheh butonat në mobile */
@media (max-width: 768px) {
  .custom-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .clients-section {
    padding: 70px 0;
  }
}


/* ===============================
Service.html
================================*/
.categories-area {
  background-color: #fff;
  padding: 120px 0; /* më shumë hapësirë vertikale */
  font-family: 'Poppins', sans-serif;
}
.categories-area .row {
  row-gap: 40px; /* kontrollon distancën vertikale midis rreshtave */
}

/* heq margjinat e tepërta nga mb-50 që Bootstrap i jep */
.single-cat.mb-50 {
  margin-bottom: 0 !important;
}
.section-tittle span {
  font-size: 14px;
  font-weight: 600;
  color: #c19b53;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-tittle span::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background-color: #c19b53;
  vertical-align: middle;
  margin-right: 10px;
}

.section-tittle h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-top: 15px;
}

/* ===============================
   SERVICE CARDS
================================*/
.single-cat {
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #fff;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column; /* shumë e rëndësishme për “Read More” */
  justify-content: space-between;
}

.single-cat:hover {
  border-color: #c19b53;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.cat-icon {
  font-size: 42px;
  color: #c19b53;
  margin-bottom: 20px;
  transition: color 0.3s ease;
  text-align: center;
}

.single-cat:hover .cat-icon {
  color: #7f652a;
}

.cat-cap {
  flex-grow: 1; /* që p të zgjatet dhe ta shtyjë butonin poshtë */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cat-cap h5 {
  font-size: 18px;
  font-weight: 700;
  color: #c19b53;
  margin-bottom: 15px;
  line-height: 1.4;
}

.cat-cap p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  text-align: justify;
  flex-grow: 1; /* mban të njëjtën lartësi midis kartave */
}

.read-more1 {
  display: inline-block;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #c19b53;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.read-more1:hover {
  color: #7f652a;
  text-decoration: underline;
}

/* ===============================
   LAYOUT FIX: EQUAL HEIGHT
================================*/
.row > [class*="col-"] {
  display: flex;
}

.single-cat {
  flex: 1;
}

/* ===============================
   RESPONSIVE DESIGN
================================*/
@media (max-width: 991px) {
  .categories-area {
  padding: 75px 0; /* më shumë hapësirë vertikale */
}
  .section-tittle h2 {
    font-size: 28px;
  }

  .single-cat {
    padding: 30px 25px;
  }
}

@media (max-width: 575px) {
  .section-tittle h2 {
    font-size: 24px;
  }

  .cat-cap p {
    font-size: 14px;
  }
}

/* ===============================
   WHY CHOOSE US SECTION
================================*/
/* ===============================
   WHY CHOOSE US - LINE STYLE
================================*/
.why-line-section {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 0;
  position: relative;
}

.why-line-section .section-tittle span {
  color: #c19b53;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.why-line-section .section-tittle h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
}
.why-line-section .subtitle {
  color: #555;
  max-width: 700px;
  margin: 10px auto 0;
  line-height: 1.6;
}

/* --- Vija qendrore --- */
.why-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 80px;
  padding: 0 20px;
}

.why-line .line {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #c19b53, #d8b87a, #c19b53);
  z-index: 1;
  opacity: 0.4;
}

/* --- Pikat mbi vijë --- */
.why-item {
  position: relative;
  width: 22%;
  text-align: center;
  z-index: 2;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 3px solid #c19b53;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c19b53;
  font-size: 30px;
  transition: all 0.3s ease;
}

.why-item:hover .why-icon {
  background: #c19b53;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(193, 155, 83, 0.3);
}

.why-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* --- Responsiviteti --- */
@media (max-width: 992px) {
  .why-line {
    flex-direction: column;
    align-items: center;
  }

  .why-line .line {
    display: none;
  }

  .why-item {
    width: 100%;
    margin-bottom: 40px;
  }
}


/* --- circle to services --- */

.our-process-circle {
  background: #fff;
  padding: 120px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: visible;
  margin-top: 140px;
  bottom: 120px;
}

/* Titulli */
.our-process-circle .section-tittle span {
  color: #c19b53;
  text-transform: uppercase;
  font-weight: 600;
}
.our-process-circle .section-tittle h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
}
.our-process-circle .section-tittle .subtitle {
  color: #555;
  max-width: 700px;
  margin: 10px auto 0;
}

/* Wrapper */
.process-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  top: 20px;
  bottom: 30px;
}

/* Rrethi që rrotullohet */
.circle-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px dashed #c19b53;
  border-radius: 50%;
  top: 0;
  left: 0;
  animation: spin 20s linear infinite;
  transform-origin: center;
  z-index: 1;
}

/* Animimi i rrotullimit */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Foto qendrore */
.center-logo {
  width: 140px;
  height: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 5;
}
.center-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Step */
.process-step {
  position: absolute;
  text-align: center;
  width: 150px;
  z-index: 10;
}
.process-step h5 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
  color: #111;
}

/* Ikona */
.icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #c19b53;
  color: #c19b53;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 22px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s ease;
}
.icon:hover {
  background: #c19b53;
  color: #fff;
}
.num {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #c19b53;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lidhjet drejt qendrës */
.connector {
  position: absolute;
  background: #c19b53;
}

/* Pozicionimi gjeometrik i saktë */
.step1 {
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}
.step1 .connector {
  width: 2px;
  height: 100px;
  top: 99px;
  left: 50%;
  transform: translateX(-50%);
}

.step2 {
  top: 50%;
  right: -67px;
  transform: translateY(-50%);
}
.step2 .connector {
  width: 100px;
  height: 2px;
  top: 50px;
  left: -85px;
  transform: translateY(-50%);
}

.step3 {
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.step3 .connector {
  width: 2px;
  height: 100px;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
}

.step4 {
  top: 50%;
  left: -73px;
  transform: translateY(-50%);
}
.step4 .connector {
  width: 100px;
  height: 2px;
  top: 46%;
  right: -90px;
  transform: translateY(-50%);
}
/* Ul pak ikonat djathtas dhe majtas pa prekur vijat */
.step2 .icon,
.step4 .icon {
  margin-top: 15px; /* ndrysho vlerën sipas dëshirës – 5px, 8px, 12px, etj. */
}

/* ===== Dropdown for Services ===== */
/* ===== DROPDOWN MENU STYLE ===== */
#navigation .dropdown > a { 
  display: inline-flex; 
  align-items: center; gap: 6px; /* hapësira midis tekstit dhe shigjetës */ 
  text-decoration: none; 
  color: #7a6632; 
}

/* Ikona e shigjetës në dropdown (fa-caret-down) */
 #navigation .dropdown > a i { 
  font-size: 11px; 
  margin-left: 3px; 
  transition: transform 0.2s ease;
 }
 /* Ktheje shigjetën lart kur menuja është hapur */ 
 #navigation .dropdown.open > a i { 
  transform: rotate(180deg);
 }

  #navigation .dropdown > a:hover, #navigation .dropdown.open > a { 
    color: #3d3000; /* ose #c19b53 nëse do efekt të artë */
   }

#navigation .dropdown-menu {
  position: absolute;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 8px 0;
  margin-top: 10px;
  min-width: 210px;
  list-style: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 10;

}

/* Shfaq dropdownin kur kalon miu mbi “Services” */
#navigation .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Secili link brenda dropdownit */
#navigation .dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #7a6632;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

/* Hover efekt i butë */
#navigation .dropdown-menu li a:hover {
  background: #f7f3ec; /* sfond i butë në stilin e artë */
  color: #c19b53;
  padding-left: 25px; /* animim horizontal elegant */
}

/* Vije ndarëse midis elementeve */
#navigation .dropdown-menu li + li a {
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Qëndron sipër çdo seksioni tjetër */
#navigation .dropdown {
  position: relative;
}

/* Opsional: pak spacing te ikona e shigjetës */
#navigation .dropdown > a i {
  font-size: 10px;
  margin-left: 4px;
}
/* Hiq shigjetën e dytë që vjen nga stilet e template */ 
#navigation .dropdown-toggle::after {
   content: none !important; 
  }


/* Responsive */
@media (max-width: 768px) {
  .step2 .connector {
    width: 70px;
    left: -32px;
    }
     .step4 .connector {
    width: 70px;
    right: -35px;
    }
.step3 .connector {
    height: 70px;
    bottom: 100px;
 }
 .step1 .connector {
    height: 70px;
    top: 80px;
    }

  .process-wrapper {
    width: 350px;
    height: 350px;
  }
  .center-logo {
    width: 100px;
    height: 100px;
  }
  .icon {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
  }


/* ABOUT.HTML */
/* ====== ABOUT SECTION ====== */
.about-section {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 0;
}

/* Titulli me vijën e artë si tek 'Our Services' */
.about-section .section-tittle {
  text-align: left;
}

.about-section .section-tittle span {
  color: #c19b53;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-left: 55px;
}

.about-section .section-tittle span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #c19b53;
  transform: translateY(-50%);
}

.about-section .section-tittle h2 {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin-top: 15px;
  line-height: 1.3;
}

/* Teksti dhe butoni */
.about-text {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

/* ✅ Button under text */
.btn-gold {
  display: inline-block;
  background-color: #c19b53;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative !important; /* remove any absolute effect */
  float: none !important;
}

.btn-gold:hover {
  background-color: #a8833d;
  transform: translateY(-2px);
}
/* Forco butonin të qëndrojë poshtë paragrafit */
.col-lg-6.mt-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* nëse do majtas; përdor center për qendër */
}

.col-lg-6.mt-4 .btn-gold {
  margin-top: 20px; /* distancë midis tekstit dhe butonit */
}

/* Imazhi */
.about-image img {
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  border: 3px solid #f5e6cc;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Container i titullit our principes*/
.section-header {
  text-align: left;
}

/* Label me vijë gold në të majtë (si tek FAQ) */
.section-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #b67a2b; /* GOLD */
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* Vija gold */
.section-label::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #b67a2b;
  display: inline-block;
}

/* Titulli */
.section-title {
  font-weight: 700;
  font-size: 32px;
  color: #0f172a; /* dark */
  margin: 0;
}


/* Responsive */
@media (max-width: 991px) {
  .about-section {
    padding: 110px 0;
  }
  .about-section .section-tittle h2 {
    font-size: 28px;
  }
  .about-image img {
    max-width: 100%;
  }
}

/* === CARD BASE === */
.mission-vision .col-md-4 {
  display: flex;
  justify-content: center;
}

.card-soft {
  width: 100%;
  max-width: 350px;
  background: #ffffff;
  border-radius: 16px;
  padding: 5px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;      /* KY E BËN QENDRIMIN PERFECT */
}

/* Hover effect */
.card-soft:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}


/* === ICON CIRCLE === */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f6ecd8;
  color: #c19b53;
  display: flex;
  align-items: center;
  justify-content: center;  /* QENDËR PERFECT */
  font-size: 26px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* === TITULLI === */
.card-soft h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #c19b53;
  text-align: center;
}

/* === TEKSTI === */
.card-soft p,
.card-soft ul li {
  color: #6b6f76;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;        /* QENDRIM EDHE NË LISTA */
  max-width: 320px;
}

/* MOMENTALISHT LISTA ËSHTË NË QENDËR */
.card-soft ul {
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Force all 3 cards on one row in desktop */
@media (min-width: 992px) {
  .mission-vision .col-md-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* === Responsive — Perfect mobile === */
@media (max-width: 768px) {
  .card-soft {
    padding: 28px 22px;
  }
  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .card-soft {
    padding: 24px 18px;
  }
  .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
  .card-soft h4 {
    font-size: 18px;
  }
  .card-soft p,
  .card-soft ul li {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .mission-vision .col-md-4 {
    margin-bottom: 22px; /* hapësira mes kartave në mobile */
  }
}




/* ================================
   contact.html – Get in Touch Section
================================= */
.contact-section {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 120px 0;
}

/* Title */
.contact-section .section-tittle {
  text-align: left;
}

.contact-section .section-tittle span {
  color: #c19b53;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-left: 55px;
}

.contact-section .section-tittle span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #c19b53;
  transform: translateY(-50%);
}

.contact-section .section-tittle h2 {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin-top: 15px;
  line-height: 1.3;
}

.contact-section .section-tittle .subtitle {
  color: #555;
  font-size: 16px;
  margin-top: 10px;
  max-width: 600px;
  line-height: 1.8;
}

/* Info Column */
.contact-info-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  border: 1px solid #ffffff;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 20px;
  color: #c19b53;
  margin-right: 15px;
  background: #f1ede8;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-item h5 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.info-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.social-links span {
  display: block;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.social-links a {
  color: #c19b53;
  font-size: 18px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #111;
}

/* Form */
.contact-form-wrapper {
  background: #faf4d3;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border: 1px solid #ffffff;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #c19b53;
  box-shadow: 0 0 8px rgba(193, 155, 83, 0.3);
}

/* Button */
.btn-gold {
  background-color: #c19b53;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #a8833d;
  transform: translateY(-2px);
}

/* Map */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #f5e6cc;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-section {
    padding: 115px 0;
  }
  .contact-section .section-tittle h2 {
    font-size: 28px;
  }
  .contact-form-wrapper {
    padding: 25px;
  }
}

/* ===== clients.html ===== */
/* ===== HERO SECTION ===== */
.clients-hero {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 180px;
}

.clients-hero .section-subtitle {
  color: #c19b53;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  padding-left: 50px;
}

.clients-hero .section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background: #c19b53;
  transform: translateY(-50%);
}

.clients-hero h2 {
  font-size: 38px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.clients-hero p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

.clients-hero .hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.clients-hero .hero-image img:hover {
  transform: scale(1.03);
}

.gold-divider {
  width: 500px;
  height: 3px;
  margin: 100px auto 0;
  background: linear-gradient(to right, transparent, #c19b53, transparent);
  border-radius: 2px;
  opacity: 0.9;
}
@media (max-width: 992px) {
  .clients-hero {
    padding: 120px 0px;
  }
  .clients-hero p {
    margin: 0 auto;
  }
  .clients-hero .hero-image img {
    margin-top: 30px;
  }
}
/* ===== CLIENT ACQUISITION CTA SECTION ===== */
.collaboration-cta {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 10px;
  padding-bottom: 70px;
}

.cta-box {
  background: #b8860b; /* blu elegante si në Laura Kokedhima */
  border-radius: 14px;
  padding: 45px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cta-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 15px;
  color: #f1f1f1;
  line-height: 1.7;
  max-width: 580px;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.btn-primary,
.btn-outline {
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Butoni i mbushur (i bardhë) */
.btn-primary {
  background: #fff;
  color: #23235c;
}

.btn-primary:hover {
  background: #c19b53;
  color: #fff;
}

/* Butoni me border */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.8px solid #fff;
}

.btn-outline:hover {
  background: #c19b53;
  border-color: #c19b53;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 40px 25px;
  }
  .cta-buttons {
    justify-content: center;
  }
}









/* ===== WhatsApp Floating Button - Gradient Version ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 95px;
  right: 25px;
  background: linear-gradient(135deg, #eee0a4, #c19b53); /* blu -> e artë */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.whatsapp-float i {
  line-height: 55px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #c19b53, #ffdf2b); /* anasjelltas në hover */
  color: white;
}



/* ========== faqs.html ========== */
.faq-section {
  background: #fff;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
  margin-top: 50px;
}

.faq-section .section-tittle span {
  color: #c19b53;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.faq-section .section-tittle h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 15px;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: #fff;
  color: #2b2b2b;
  font-weight: 600;
}

.faq-question h4 {
  margin: 0;
  font-size: 16px;
}

.faq-question i {
  color: #c19b53;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ========== CALL TO ACTION SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 150px;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.cta-section p {
  font-size: 16px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-btn {
  background-color: #c19b53;
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.cta-btn i {
  font-size: 18px;
}

.cta-btn:hover {
  background-color: #a3740a;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(193, 155, 83, 0.25);
  text-decoration: none;
}

@media (max-width: 991px) {
  .faq-section {
  padding: 67px 0;
}
  }

/* ================================
   FOOTER STYLING (Dark Blue Theme)
================================= */
.footer-area {
  background-color: #0b1630; /* blu e errët elegante */
  color: #f0f0f0;
  padding-top: 60px;
  font-family: 'Poppins', sans-serif;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-tittle h4 {
  font-size: 18px;
  font-weight: 600;
  color: #c19b53; /* ari */
  margin-bottom: 20px;
}

.footer-pera p {
  font-size: 14px;
  color: #d5d5d5;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Teksti i kontaktit */
.footer-number h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer-number p {
  font-size: 15px;
  color: #c19b53;
  margin-bottom: 0;
}

/* Links */
.footer-tittle ul {
  list-style: none;
  padding-left: 0;
}

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

.footer-tittle ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-tittle ul li a:hover {
  color: #c19b53;
  padding-left: 3px;
}

/* Newsletter */
.footer-form {
  position: relative;
  margin-top: 10px;
}

.footer-form input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
}

.footer-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #c19b53;
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.footer-form button:hover {
  background-color: #a07f2b;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 0;
  font-size: 14px;
  color: #aaa;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom script {
  color: #c19b53;
}

/* Social Icons */
.footer-social a {
  color: #c19b53;
  margin-left: 12px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}
.footer-copy-right {
  text-align: left; /* e vendos majtas */
  color: #aaa;
  font-size: 14px;
}
.footer-copy-right p {
  margin-bottom: 0;
}


/* Responsive */
/* ======================= FOOTER MOBILE FIX ======================= */
@media (max-width: 991px) {

  /* --- Fshi pozicionimin horizontal të Bootstrap-it --- */
  footer .footer-top .row.d-flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 30px !important;
  }

  /* --- Çdo kolonë në qendër --- */
  footer .footer-top [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* --- Logo dhe teksti lart --- */
  footer .footer-logo img {
    margin: 0 auto 10px auto !important;
    display: block !important;
  }

  footer .footer-pera p,
  footer .footer-number,
  footer .footer-number h4,
  footer .footer-number p {
    text-align: center !important;
    margin: 5px auto !important;
  }

  /* --- Titujt e seksioneve --- */
  footer .footer-tittle h4 {
    text-align: center !important;
    margin: 15px 0 10px 0 !important;
  }

  /* --- Listat --- */
  footer .footer-tittle ul {
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  footer .footer-tittle ul li {
    display: block !important;
    margin: 5px 0 !important;
  }

  footer .footer-tittle ul li a {
    color: #fff !important;
    opacity: 0.9;
    display: inline-block !important;
    text-align: center !important;
  }

  /* --- Newsletter --- */
  footer .footer-form form {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
  }


    footer .footer-form input[type="email"] {
    width: 100% !important;
    padding: 10px 12px !important;
    border: none !important;
    border-radius: 6px !important;
    text-align: left !important;
    font-size: 15px !important;
  }

  footer .footer-form button {
    background: #c19b53 !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 24px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
  }

  /* --- Footer Bottom --- */
  footer .footer-bottom .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px !important;
  }

  footer .footer-copy-right p {
    text-align: center !important;
    margin: 0 !important;
  }

  footer .footer-social {
    display: flex !important;
    justify-content: center !important;
    margin-top: 12px !important;
    gap: 12px !important;
  }

  footer .footer-social a {
    margin: 0 5px !important;
  }
  /* Footer bottom në qendër */
  footer .footer-bottom {
    text-align: center !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  footer .footer-bottom .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px !important;
    margin: 0 auto !important;
  }

  /* Copyright */
  footer .footer-copy-right {
    order: 2 !important;
    text-align: center !important;
  }

  footer .footer-copy-right p {
    font-size: 14px !important;
    color: #d6d6d6 !important;
    margin-left: 10px !important;
  }

  /* Ikonat sociale */
  footer .footer-social {
    order: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    margin: 10px 0 5px 0 !important;
  }

  footer .footer-social a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(193, 155, 83, 0.15) !important;
    color: #c19b53 !important;
    transition: all 0.3s ease;
  }

  footer .footer-social a:hover {
    background: #c19b53 !important;
    color: #fff !important;
    transform: translateY(-2px);
  }

  /* Rregullim i spacing total në fund */
  footer {
    padding-bottom: 8px !important;
  }
}









/* ================= MOBILE MENU (CUSTOM, NO PLUGIN) ================= */
/* ================= MOBILE MENU (FINAL STRUCTURED VERSION) ================= */
@media (max-width: 991px) {

  /* ===== Fsheh menunë desktop ===== */
  .main-menu {
    display: none;
  }

  /* ===== Logo + hamburger ===== */
  header .mobile_menu {
    position: absolute !important;
    right: 32px !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    z-index: 1003 !important;
    top: -13px;
  }

  /* ===== Ikona hamburger ===== */
  .hamburger {
    font-size: 28px;
    color: #c19b53;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .hamburger:hover {
    transform: scale(1.15);
  }

  /* ===== Kuti menuje ===== */
  .mobile-nav {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 270px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 40px;
    transition: right 0.4s ease;
    z-index: 1001;
    overflow-y: auto;
    border-radius: 12px 0 0 12px;
  }

  .mobile-nav.active {
    right: 0;
  }

  /* ===== Vijë poshtë ikonës së mbylljes (X) ===== */
  .mobile-nav::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
  }

  /* ===== Butoni “Appointment” në fund të menusë ===== */
  .mobile-nav .appointment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 80%;
    margin: 40px auto 10px auto;
    padding: 12px 0;
    text-align: center;
    background: #c19b53;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .mobile-nav .appointment-btn i {
    font-size: 16px;
  }

  .mobile-nav .appointment-btn:hover {
    background: #b0894c;
    transform: translateY(-2px);
  }

  /* ===== Close button ===== */
  .mobile-nav .close-btn {
    position: absolute;
    top: 22px;
    right: 25px;
    font-size: 26px;
    color: #c19b53;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .mobile-nav .close-btn:hover {
    transform: rotate(90deg);
  }

  /* ===== Lista e elementeve ===== */
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 40px !important;
  }

  .mobile-nav ul li {
    margin-bottom: 18px;
    text-align: center;
  }

  /* ===== Linkët kryesorë ===== */
  .mobile-nav ul li a {
    font-size: 17px;
    font-weight: 500;
    color: #2b2b2b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    padding-top: 8px;
  }

.mobile-nav ul li a:hover {
    color: #c19b53;
  }

  /* ===== Submenu (Services + Lang) ===== */
  .mobile-nav .dropdown-menu,
  .mobile-nav .lang-dropdown ul {
    display: none;
    opacity: 1 !important;
    position: static !important;
    background: #fff !important;
    border-radius: 10px;
    margin-top: 10px;
    padding: 12px 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .mobile-nav .dropdown-menu.open,
  .mobile-nav .lang-dropdown ul.open {
    display: block !important;
  }

  .mobile-nav .dropdown-menu li a,
  .mobile-nav .lang-dropdown ul li a {
    font-size: 15px;
    color: #444;
    font-weight: 400;
    padding: 5px 0;
  }

  .mobile-nav .dropdown-menu li a:hover,
  .mobile-nav .lang-dropdown ul li a:hover {
    color: #c19b53;
  }
  /* ===== Ikonat e dropdown (Services & Lang) ===== */
.mobile-nav ul li.dropdown > a i.fa-caret-down,
.mobile-nav .lang-dropdown > a i.fa-caret-down {
  font-size: 20px !important; /* Madhësi e njëjtë për të gjitha ikonat */
  color: #c19b53 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 6px !important;
  vertical-align: middle !important;
  transform: translateY(-2px) !important; /* për të qenë në vijë perfekte me tekstin */
  transition: transform 0.3s ease;
}

  /* ===== Overlay ===== */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* ===== Eliminon scroll horizontal ===== */
  html, body {
    overflow-x: hidden;
  }
}

@media (max-width: 991px) {
  /* Zhvendos gjithë kutinë pak më djathtas */
  .mobile-nav ul li.dropdown > .dropdown-menu {
    position: relative !important;
    left: 35px !important; /* më shumë se më parë */
    margin: 10px 0 !important;
    width: calc(100% - 70px) !important; /* pak më e ngushtë */
    background: #fff !important;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center !important;
    padding: 5px 0 !important;
  }

  /* Teksti brenda kutisë */
  .mobile-nav ul li.dropdown > .dropdown-menu li a {
    display: block !important;
    font-size: 15px;
    color: #7a5b2d;
    font-weight: 500;
    padding: 10px 0 !important;
    letter-spacing: 0.2px;
    transition: color 0.3s ease, background 0.3s ease;
  }

  /* Vija ndarëse më e hollë dhe më e butë */
  .mobile-nav ul li.dropdown > .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    margin: 0 20px; /* e mbledh pak brenda */
  }

  /* Hiq vijën te i fundit */
  .mobile-nav ul li.dropdown > .dropdown-menu li:last-child {
    border-bottom: none;
  }

  /* Hover efekti elegant */
  .mobile-nav ul li.dropdown > .dropdown-menu li a:hover {
    color: #c19b53;
    background: rgba(193, 155, 83, 0.05);
  }
}


/* ================= Submenu “Languages” ================= */
@media (max-width: 991px) {
  .mobile-nav .lang-dropdown ul {
    background: #fff !important;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    width: 80%;
    margin: 10px auto 0 auto;
    margin-left: 28px;
  }

  .mobile-nav .lang-dropdown ul li a {
    color: #2b2b2b !important;
    font-weight: 500;
  }

  .mobile-nav .lang-dropdown ul li a:hover {
    background: #fafafa !important;
    color: #c19b53 !important;
  }

  .mobile-nav .lang-dropdown ul.open {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }
}
/* ================= FIX FINAL: Lejo submenu të hapet kur ka .open ================= */
@media (max-width: 991px) {
  /* Jep prioritet më të lartë hapjes */
  .mobile-nav ul li.dropdown > .dropdown-menu.open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 600px !important;
    overflow: visible !important;
    transition: all 0.3s ease;
  }

  /* Po ashtu për gjuhët */
  .mobile-nav .lang-dropdown ul.open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 400px !important;
  }
}
/* ================== FIX WHITE SPACE UNDER FOOTER ================== */
 /* ===== FIX: Hide mobile nav and overlay in desktop ===== */
  @media (min-width: 992px) { 
    .mobile-nav, .menu-overlay, .close-btn { 
      display: none !important; 
      visibility: hidden !important; 
      opacity: 0 !important; 
      height: 0 !important; 
      margin: 0 !important; 
      padding: 0 !important; 
      overflow: hidden !important; 
      background: transparent !important; 
      position: static !important; 
    } 
    }

