.destric-container {
    min-height: 100vh;
    background: #f8f9fa;
}

.destric-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.breadcrumb-section {
    margin-bottom: 1rem;
}

.breadcrumb-link {
    color: #bdc3c7;
    text-decoration: none;
}

.breadcrumb-current {
    color: white;
    font-weight: bold;
}

.page-title {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
}

.property-count {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: normal;
}

.district-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.destric-tabs {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tab-nav {
    display: flex;
    gap: 0;
}

.tab-link {
    padding: 1.2rem 2rem;
    text-decoration: none;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-link:hover {
    background: #f8f9fa;
    color: #3498db;
}

.tab-link.active {
    color: #3498db;
    border-bottom-color: #3498db;
    background: #f8f9fa;
}

.tab-count {
    background: #ecf0f1;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.main-content {
    padding: 2rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.properties-main {
    width: 100%;
}

.properties-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem; 
    justify-items: center; 
}

.property-card {
    width: 400px; 
    height: 500px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column; 
    
}


.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.no-image {
    width: 100%;
    height: 100%;
    background: #ecf0f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

.no-image i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.property-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.district-badge {
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}

.hot-deal-badge {
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}

.featured-badge {
    background: rgba(241, 196, 15, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}

.property-content {
    padding: 1.5rem;
}

.property-header {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    margin-bottom: 1rem;
}

.property-title {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
}

.property-title a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
}

.property-title a:hover {
    color: #3498db;
}

.property-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e74c3c;
    text-align: right;
}

.price-period {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: normal;
}

.property-location {
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.property-location i {
    margin-right: 0.5rem;
    color: #3498db;
}

.property-description {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.feature i {
    color: #3498db;
}

.property-footer {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.property-type {
    font-weight: 500;
    color: #2c3e50;
}

.property-offer-type {
    background: #ecf0f1;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.no-properties {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.no-properties-icon {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.no-properties h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.no-properties p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .property-header,
    .property-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .property-price {
        text-align: left;
    }
    /* Responsive */
@media (max-width: 1200px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .property-card {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .tab-nav {
        flex-wrap: wrap;
    }

    .tab-link {
        width: 50%;
        text-align: center;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .property-card {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .tab-link {
        width: 100%;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .property-card {
        width: 100%;
        height: auto;
    }

    .property-header,
    .property-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .property-price {
        text-align: left;
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }
}

}