
.footer,.site-footer,.site-footer * {
    font-family: Jost,sans-serif
}

.footer a,.mobile-nav a,.nav-links a {
    text-decoration: none
}


@media screen and (max-width: 768px) {
    img.marka {
        margin-left:5px
        }
    }
.wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: #f4f6f9
}

.filter-panel {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
    border: 1px solid #e0e0e0
}

.filter-panel h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px
}

.filter-panel input[type=number],.filter-panel input[type=text] {
    width: 40%;
    padding: 10px 12px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px
}

.filter-panel label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer
}

.filter-panel input[type=checkbox] {
    margin-right: 8px;
    vertical-align: middle
}

.property-grid {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 25px
}

.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,.05);
    transition: transform .2s
}

.property-card:hover {
    transform: translateY(-4px)
}

.property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover
}

.property-card h5 {
    margin: 10px 15px 5px;
    font-size: 16px;
    color: #222
}

.property-card p {
    margin: 0 15px 15px;
    font-size: 14px;
    color: #555
}

.property-card p div {
    margin-bottom: 4px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px
}

.property-card p div i {
    color: #666
}

.property-info {
    list-style: none;
    padding: 0 15px 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #262323
}

.property-info li {
    display: flex;
    align-items: center;
    gap: 8px
}

.property-info li i {
    color: #d41e26 ;
    min-width: 16px
}

.no-results {
    grid-column: 1/-1;
    text-align: center;
    font-size: 16px;
    color: #999;
    padding: 30px 0
}

.footer {
    background-color: #336eb1;
    padding: 40px 20px 20px;
    color: #fff;
    font-size: 15px
}

.footer a {
    color: #fff
}

.footer a:hover {
    text-decoration: underline
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px
}

.footer-col {
    flex: 1 1 220px;
    min-width: 220px
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffff
}

.footer-col ul {
    list-style: none;
    padding: 0
}

.footer-col ul li {
    margin-bottom: 8px
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px
}

.footer-desc {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff
}

.footer-bottom {
    border-top: 1px solid #ccc;
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
    color: #555
}

@media (max-width: 992px) {
    .wrapper {
        flex-direction:column;
        padding: 20px
    }

    .filter-panel,.footer-col {
        width: 100%
    }

    .footer-top {
        flex-direction: column
    }

    .footer-col h4 {
        margin-top: 20px
    }
}

/* Dropdown Base */
.nav-item.dropdown {
    position: relative;
}

.nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
}

.nav-item .dropdown-menu li {
    list-style: none;
}

.nav-item .dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    /* border-bottom: aqua; */
    text-decoration: none;
    font-size: 17px;
    border: black;
}

.nav-item .dropdown-menu a:hover {
    background: #336eb1;
    color: #fff;
}

/* Hover Effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Support */
@media (max-width: 992px) {
    .nav-item .dropdown-menu {
        position: relative;
        box-shadow: none;
        border-radius: 0;
    }
}
/* Dropdown item divider */
.nav-item .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 17px;
  transition: 0.25s ease;
  border-bottom: 1px solid #eee;   /* Divider */
}

/* Remove divider from last item */
.nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Hover */
.nav-item .dropdown-menu a:hover {
  background: #f3f3f3;
  color: #000;
}
/* ===============================
   GLOBAL FIX — RESPONSIVE HEADER
   =============================== */

/* Fix container behavior on large, wide screens (including projectors) */
header .container {
    max-width: 1300px;   /* safe max width */
    width: 100%;
}

/* NAVBAR FIX */
.navbar {
    width: 100%;
    padding: 10px 0;
}

/* Align menu properly */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Fix dropdown width and alignment */
.nav-item .dropdown-menu {
    min-width: 240px;
    width: auto;
}

/* Fix logo shrinking on scrolled header */
.header-sticky .navbar-brand img {
    width: 170px;
}
.header-sticky.scrolled .navbar-brand img {
    width: 150px;
}

/* ===============================
   MOBILE & TABLET FIXES
   =============================== */
@media (max-width: 992px) {

    /* Make header layout stack correctly */
    .navbar .container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    /* Make dropdown readable */
    .nav-item .dropdown-menu {
        width: 100%;
        padding-left: 10px;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
    }

    /* Important: hide desktop menu */
    .main-menu {
        display: none !important;
    }

    /* Enable mobile menu toggle */
    .navbar-toggle {
        display: block !important;
        cursor: pointer;
    }

    /* Fix topbar text overlapping */
    .topbar .row {
        text-align: center;
    }
}

/* ===============================
   EXTRA WIDE SCREENS (PROJECTORS)
   =============================== */
@media (min-width: 1600px) {
    header .container {
        max-width: 1500px;
    }
}

/* ===============================
   MEDIUM LAPTOP FIXES
   =============================== */
@media (min-width: 1200px) and (max-width: 1400px) {
    .navbar-nav .nav-link {
        font-size: 15px;
    }

    .navbar-brand img {
        width: 160px;
    }
}
/* ======================================
      PERFECT RESPONSIVE TOPBAR
====================================== */

.topbar {
    background: #336eb1;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

.top-left i,
.top-right i {
    margin-right: 6px;
    transform: rotateY(-130deg);
}

.top-center span {
    margin: 0 10px;
}
@media screen and (max-width:768px){
  /* Hide email + phone only on mobile */
@media (max-width: 768px) {
  .topbar .markaleft { 
    display: none !important; 
  }
}

}

/* ==========================
   Tablet Fix
========================== */
@media (max-width: 992px) {
    .topbar-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 6px;
    }

    .top-center span {
        display: block;
        margin: 3px 0;
    }
}


/* ==========================
   Mobile Fix
========================== */
@media (max-width: 576px) {
    .topbar-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .top-center span {
        font-size: 13px;
    }

    .top-left a,
    .top-right a {
        display: inline-block;
        margin: 2px 5px;
        font-size: 13px;
    }

}


/* ==========================
   Ultra-Wide Screen (Projector)
========================== */
@media (min-width: 1600px) {
    .topbar .container {
        max-width: 1500px;
    }
}
.topbar .container,
.topbar .row {
  pointer-events: auto !important;
}

.topbar {
  pointer-events: none;
}

.topbar * {
  pointer-events: auto;
}
logo-carousel-wrapper {
    background-color: #fff;
    padding: 30px 0
}

.logo-slide-track {
    display: flex;
    width: calc(250px * 24);
    animation: 25s linear infinite scroll;
    margin-bottom: 40px;
}

.logo-slide {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-slide img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-250px * 12))
    }
}

@media screen and (max-width) {
    .logo-carousel-wrapper {
        margin-top: 2px;
        margin-bottom: 2px
    }
}
