* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f6f6;
  color: #111;
  line-height: 1.5;
}
.container {
  width: min(92%, 1280px);
  margin: 0 auto;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.logo {
  text-decoration: none;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}
.logo span {
  color: #d1a85b;
}
.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)),
    url("../images/hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 92%;
}
.hero-copy {
  text-align: center;
  color: #fff;
  margin-bottom: 26px;
}
.hero-copy h1 {
  font-size: 56px;
  margin: 0 0 10px;
}
.hero-copy p {
  font-size: 20px;
  margin: 0;
}
.hero-filter {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.filter-grid input,
.filter-grid select {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
}
.filter-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 14px;
}
.search-btn,
.card-btn,
.wa-btn,
.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 800;
}
.search-btn {
  background: #0b1731;
  color: #fff;
  padding: 14px 26px;
}
.advanced-link {
  text-decoration: none;
  color: #666;
  font-size: 13px;
  font-weight: 700;
}
.section {
  padding: 90px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 38px;
}
.section-head .eyebrow {
  display: inline-block;
  color: #caa55c;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: 40px;
  margin: 0 0 8px;
}
.section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #666;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.card-image {
  position: relative;
  height: 260px;
  background: #ececec;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0b1731;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}
.card-body {
  padding: 26px;
}
.card-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
}
.meta,
.agent-name,
.agent-mini {
  color: #666;
  margin: 0 0 10px;
}
.price {
  color: #caa55c;
  font-size: 28px;
  font-weight: 900;
  margin: 10px 0 16px;
}
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.card-btn {
  background: #0b1731;
  color: #fff;
  padding: 14px;
}
.wa-btn {
  background: #25d366;
  color: #fff;
  padding: 14px;
}
.details-page {
  padding: 130px 0 80px;
}
.details-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 28px;
}
.panel {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.main-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.panel-body {
  padding: 30px;
}
.top-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
.top-line h1 {
  font-size: 42px;
  margin: 0 0 10px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.feature-box {
  background: #f4f4f4;
  border-radius: 14px;
  padding: 16px;
}
.feature-box strong {
  display: block;
  margin-bottom: 6px;
}
.description {
  margin-top: 28px;
  color: #444;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.chip {
  background: #0b1731;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.gallery {
  margin-top: 28px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}
.sticky-card {
  padding: 26px;
  position: sticky;
  top: 20px;
}
.contact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ececec;
}
.secondary-btn {
  background: #0b1731;
  color: #fff;
  padding: 14px;
}
.site-footer {
  background: #0b1731;
  color: #fff;
  padding: 26px 0;
  margin-top: 60px;
}
.footer-wrap {
  text-align: center;
}
.empty {
  padding: 20px;
  background: #fff;
  border-radius: 18px;
}
.all-grid {
  padding-top: 130px;
}
.filters-top {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  margin-bottom: 26px;
}
.agent-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}
.agent-card img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  background: #ececec;
}
.agent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.text-muted {
  color: #666;
}
.single-action {
  display: block;
  width: 100%;
  margin-top: 12px;
}
.single-action .wa-btn,
.single-action .secondary-btn {
  width: 100%;
}
@media (max-width: 992px) {
  .filter-grid,
  .cards,
  .gallery-grid,
  .feature-grid,
  .details-grid,
  .agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .card-actions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .filter-grid,
  .cards,
  .gallery-grid,
  .feature-grid,
  .agent-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 32px;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .top-line {
    flex-direction: column;
  }
  .top-line h1 {
    font-size: 30px;
  }
  .main-photo {
    height: 320px;
  }
}


/*Pse Dita Real Estates*/
.why-dita{
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.why-dita .container{
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
}

.why-dita-head{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.why-label{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212,175,55,0.10);
    color: #c8a96b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.why-dita-head h2{
    font-size: 40px;
    color: #111827;
    margin: 0 0 14px;
    line-height: 1.2;
}

.why-dita-head p{
    font-size: 16px;
    color: #5f6773;
    line-height: 1.8;
    margin: 0;
}

.why-dita-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card{
    position: relative;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 22px;
    padding: 30px 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.why-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f1d77a);
}

.why-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.10);
    border-color: rgba(11,35,65,0.22);
}

.why-icon{
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b2341;
    color: #d4af37;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(11,35,65,0.18);
}

.why-card h3{
    font-size: 22px;
    color: #111827;
    margin: 0 0 14px;
    line-height: 1.35;
}

.why-card p{
    font-size: 15px;
    color: #5f6773;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 992px){
    .why-dita-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .why-dita-head h2{
        font-size: 34px;
    }
}

@media (max-width: 576px){
    .why-dita{
        padding: 70px 0;
    }

    .why-dita-grid{
        grid-template-columns: 1fr;
    }

    .why-dita-head h2{
        font-size: 28px;
    }

    .why-card{
        padding: 24px 20px;
    }
}

/*sipas kategorive*/
.kategori-section{
    padding: 90px 0;
    background: #ffffff;
}

.kategori-section .container{
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
}

.kategori-head{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.kategori-label{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212,175,55,0.10);
    color: #c8a96b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.kategori-head h2{
    font-size: 40px;
    color: #111827;
    margin: 0 0 14px;
    line-height: 1.2;
}

.kategori-head p{
    font-size: 16px;
    color: #5f6773;
    line-height: 1.8;
    margin: 0;
}

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

.kategori-card{
    position: relative;
    display: block;
    min-height: 340px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
    transition: all 0.35s ease;
}

.kategori-card:hover{
    transform: translateY(-8px);
}

.kategori-image{
    position: absolute;
    inset: 0;
}

.kategori-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.kategori-card:hover .kategori-image img{
    transform: scale(1.08);
}

.kategori-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,35,65,0.88), rgba(11,35,65,0.20));
}

.kategori-content{
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
}

.kategori-content h3{
    font-size: 28px;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 700;
}

.kategori-content span{
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212,175,55,0.92);
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 992px){
    .kategori-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .kategori-head h2{
        font-size: 34px;
    }
}

@media (max-width: 576px){
    .kategori-section{
        padding: 70px 0;
    }

    .kategori-grid{
        grid-template-columns: 1fr;
    }

    .kategori-head h2{
        font-size: 28px;
    }

    .kategori-card{
        min-height: 290px;
    }

    .kategori-content h3{
        font-size: 24px;
    }
}

/*zona qe mbulojme*/
.zonat-section{
    padding: 90px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.zonat-section .container{
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
}

.zonat-head{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.zonat-label{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212,175,55,0.10);
    color: #c8a96b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.zonat-head h2{
    font-size: 40px;
    color: #111827;
    margin: 0 0 14px;
    line-height: 1.2;
}

.zonat-head p{
    font-size: 16px;
    color: #5f6773;
    line-height: 1.8;
    margin: 0;
}

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

.zona-card{
    position: relative;
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    background-size: cover;
    background-position: center;
}

.zona-card:hover{
    transform: translateY(-8px);
}

.zona-card:nth-child(1){
    background-image: url('../images/zona-qender.webp');
}

.zona-card:nth-child(2){
    background-image: url('../images/zona-plazh.webp');
}

.zona-card:nth-child(3){
    background-image: url('../images/zona-golem.webp');
}

.zona-card:nth-child(4){
    background-image: url('../images/zona-lalez.webp');
}

.zona-card:nth-child(5){
    background-image: url('../images/zona-shkembi.webp');
}

.zona-card:nth-child(6){
    background-image: url('../images/zona-currila.webp');
}

.zona-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,35,65,0.88), rgba(11,35,65,0.20));
}

.zona-content{
    position: relative;
    z-index: 2;
}

.zona-content h3{
    margin: 0 0 8px;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
}

.zona-content span{
    color: #f3f4f6;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 992px){
    .zonat-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .zonat-head h2{
        font-size: 34px;
    }
}

@media (max-width: 576px){
    .zonat-section{
        padding: 70px 0;
    }

    .zonat-grid{
        grid-template-columns: 1fr;
    }

    .zonat-head h2{
        font-size: 28px;
    }

    .zona-card{
        min-height: 240px;
    }

    .zona-content h3{
        font-size: 24px;
    }
}

/*CTA section*/
.cta-section{
    position: relative;
    padding: 110px 0;
    background: url('../images/hero.webp') center/cover no-repeat;
    overflow: hidden;
}

.cta-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(11,35,65,0.92),
        rgba(11,35,65,0.65)
    );
}

.cta-section .container{
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content{
    max-width: 720px;
}

/* BADGE */
.cta-badge{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212,175,55,0.15);
    color: #d4af37;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
}

/* TITLE */
.cta-content h2{
    font-size: 46px;
    color: #fff;
    margin-bottom: 18px;
}

/* TEXT */
.cta-content p{
    font-size: 17px;
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* BUTTONS */
.cta-buttons{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* GOLD BUTTON */
.btn-primary{
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d4af37, #f1d77a);
    color: #111827;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}

/* WHATSAPP BUTTON */
.btn-whatsapp{
    padding: 14px 26px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    transition: 0.3s;
}

.btn-whatsapp:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37,211,102,0.35);
}

/* STATS */
.cta-stats{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-stat strong{
    display: block;
    font-size: 28px;
    color: #d4af37;
}

.cta-stat span{
    font-size: 14px;
    color: #e5e7eb;
}

/* MOBILE */
@media (max-width: 768px){
    .cta-content h2{
        font-size: 32px;
    }

    .cta-stats{
        gap: 20px;
    }
}

